/* ==========================================================================
   landing.css — Parban public landing page
   Fully self-contained. Does not reuse or override cludo.css / login-modern.css
   so the dashboard, login page, and this page can never visually collide.
   ========================================================================== */

.pb-landing {
  --pb-maroon: #7a1f1f;
  --pb-maroon-dark: #5c1616;
  --pb-gold: #c9964a;
  --pb-gold-dark: #a9742c;
  --pb-navy: #1d3fae;
  --pb-cream: #faf6ee;
  --pb-ink: #2c2620;
  --pb-ink-soft: #6b6058;
  --pb-border: #e9e0d2;
  font-family: 'Poppins', -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--pb-ink);
  background: var(--pb-cream);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.pb-landing * {
  box-sizing: border-box;
}

.pb-landing h1,
.pb-landing h2,
.pb-landing h3,
.pb-landing h4 {
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0;
  color: var(--pb-maroon-dark);
}

.pb-landing a {
  text-decoration: none;
  color: inherit;
}

.pb-landing img {
  max-width: 100%;
  display: block;
}

.pb-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Top bar ---- */
.pb-topbar {
  background: var(--pb-maroon-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.pb-topbar .pb-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}

.pb-topbar-contacts {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pb-topbar-contacts span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pb-topbar-social {
  display: flex;
  gap: 14px;
}

.pb-topbar-social a {
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.pb-topbar-social a:hover {
  opacity: 1;
}

/* ---- Nav ---- */
.pb-nav {
  background: #ffffff;
  border-bottom: 1px solid var(--pb-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.pb-nav .pb-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}

.pb-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pb-brand img {
  height: 48px;
  width: auto;
}

.pb-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pb-nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--pb-ink);
  transition: color 0.15s ease;
}

.pb-nav-links a:hover {
  color: var(--pb-maroon);
}

.pb-login-btn {
  background: linear-gradient(135deg, var(--pb-gold), var(--pb-gold-dark));
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(169, 116, 44, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pb-login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(169, 116, 44, 0.45);
  color: #ffffff;
}

.pb-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--pb-maroon-dark);
  cursor: pointer;
}

/* ---- Hero ---- */
.pb-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.pb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(60, 15, 15, 0.88) 0%, rgba(60, 15, 15, 0.55) 45%, rgba(29, 63, 174, 0.35) 100%);
  z-index: -1;
}

.pb-hero-content {
  color: #ffffff;
  max-width: 620px;
  padding: 60px 24px;
}

.pb-hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(244, 217, 168, 0.4);
  color: #f4d9a8;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.pb-hero h1 {
  color: #ffffff;
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.pb-hero h1 span {
  color: #f4d9a8;
}

.pb-hero p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
  max-width: 480px;
}

.pb-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.pb-btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14.5px;
  transition: background 0.15s ease, color 0.15s ease;
}

.pb-btn-outline:hover {
  background: #ffffff;
  color: var(--pb-maroon-dark);
}

/* ---- Section shell ---- */
.pb-section {
  padding: 84px 0;
}

.pb-section-alt {
  background: #ffffff;
}

.pb-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.pb-section-eyebrow {
  display: inline-block;
  color: var(--pb-gold-dark);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pb-section-head h2 {
  font-size: 34px;
  margin-bottom: 14px;
}

.pb-section-head p {
  color: var(--pb-ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* ---- About ---- */
.pb-about {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
}

.pb-about-media img {
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(60, 15, 15, 0.18);
}

.pb-about-copy h2 {
  font-size: 30px;
  margin-bottom: 18px;
}

.pb-about-copy p {
  color: var(--pb-ink-soft);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.pb-about-copy .pb-btn-solid {
  margin-top: 8px;
}

.pb-btn-solid {
  display: inline-block;
  background: var(--pb-maroon);
  color: #ffffff !important;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14.5px;
  transition: background 0.15s ease, transform 0.15s ease;
}

.pb-btn-solid:hover {
  background: var(--pb-maroon-dark);
  transform: translateY(-2px);
  color: #ffffff;
}

/* ---- Cards grid (services / rooms) ---- */
.pb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.pb-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(60, 15, 15, 0.08);
  border: 1px solid var(--pb-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(60, 15, 15, 0.16);
}

.pb-card-media {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.pb-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pb-card:hover .pb-card-media img {
  transform: scale(1.08);
}

.pb-card-body {
  padding: 20px 20px 22px;
}

.pb-card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.pb-card-body p {
  font-size: 13.5px;
  color: var(--pb-ink-soft);
  line-height: 1.6;
  margin-bottom: 0;
}

.pb-card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pb-gold-dark);
}

.pb-placeholder-badge {
  display: inline-block;
  background: var(--pb-navy);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

/* ---- Gallery ---- */
.pb-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pb-gallery a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 6px 16px rgba(60, 15, 15, 0.1);
}

.pb-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.pb-gallery a:hover img {
  transform: scale(1.1);
}

/* ---- Facilities ---- */
.pb-facilities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.pb-facility {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--pb-cream);
  border: 1px solid var(--pb-border);
  border-radius: 14px;
  padding: 18px;
}

.pb-facility i {
  font-size: 22px;
  color: var(--pb-gold-dark);
  margin-top: 2px;
}

.pb-facility h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.pb-facility p {
  font-size: 13px;
  color: var(--pb-ink-soft);
  margin: 0;
}

/* ---- Contact ---- */
.pb-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.pb-contact-card {
  background: #ffffff;
  border: 1px solid var(--pb-border);
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(60, 15, 15, 0.06);
}

.pb-contact-card i {
  font-size: 26px;
  color: var(--pb-maroon);
  margin-bottom: 12px;
  display: inline-block;
}

.pb-contact-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.pb-contact-card p,
.pb-contact-card a {
  font-size: 13.5px;
  color: var(--pb-ink-soft);
  line-height: 1.6;
}

/* ---- CTA banner ---- */
.pb-cta {
  background: linear-gradient(135deg, var(--pb-maroon-dark), var(--pb-maroon) 55%, var(--pb-gold-dark));
  color: #ffffff;
  text-align: center;
  padding: 64px 24px;
}

.pb-cta h2 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 12px;
}

.pb-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  margin-bottom: 26px;
}

/* ---- Footer ---- */
.pb-footer {
  background: #241211;
  color: rgba(255, 255, 255, 0.72);
  padding: 60px 0 0;
  font-size: 13.5px;
}

.pb-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pb-footer h4 {
  color: #f4d9a8;
  font-size: 15px;
  margin-bottom: 16px;
}

.pb-footer-brand img {
  height: 44px;
  margin-bottom: 14px;
}

.pb-footer-brand p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.pb-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pb-footer ul li {
  margin-bottom: 10px;
}

.pb-footer ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s ease;
}

.pb-footer ul a:hover {
  color: #f4d9a8;
}

.pb-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.pb-footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.pb-footer-social a:hover {
  background: var(--pb-gold-dark);
  border-color: var(--pb-gold-dark);
}

.pb-footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* ---- Responsive ---- */
@media (max-width: 1023px) {
  .pb-about {
    grid-template-columns: 1fr;
  }
  .pb-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pb-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .pb-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--pb-border);
    display: none;
  }
  .pb-nav-links.pb-open {
    display: flex;
  }
  .pb-nav-toggle {
    display: block;
  }
  .pb-hero h1 {
    font-size: 32px;
  }
  .pb-section {
    padding: 56px 0;
  }
  .pb-footer-grid {
    grid-template-columns: 1fr;
  }
  .pb-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .pb-topbar .pb-container {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .pb-hero h1 {
    font-size: 26px;
  }
  .pb-hero-content {
    padding: 40px 20px;
  }
}
