/*
 * Hotel Pushpak — main.css
 * ─────────────────────────
 * Mobile-first.
 * #9C27B0 purple · #C9962E gold · #FDF8F2 cream
 */

/* ══════════════════════════════
   CSS VARIABLES
══════════════════════════════ */
:root {
  --blue:      #9C27B0;
  --blue-dk:   #7B1FA2;
  --blue-lt:   #F3E5F5;
  --gold:      #C9962E;
  --gold-lt:   #F0D9A8;
  --gold-dk:   #A47820;
  --cream:     #FDF8F2;
  --cream-dk:  #EDE4D6;
  --navy:      #0D1B2A;
  --navy-mid:  #152338;
  --text:      #1A1A2E;
  --text-mid:  #4A4A6A;
  --text-lt:   #7A7A9A;
  --white:     #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,.11);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.16);
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --ease: .25s ease;
  --display: 'Playfair Display', Georgia, serif;
  --body:    'DM Sans', system-ui, sans-serif;
}

/* ══════════════════════════════
   RESET & BASE
══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  padding-bottom: 64px; /* mobile nav clearance */
}
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
address { font-style: normal; }

/* ══════════════════════════════
   UTILITIES
══════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 60px 0; }
.centered { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
.eyebrow {
  display: block;
  font-size: .73rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  font-weight: 700; line-height: 1.2;
  color: var(--text); margin-bottom: 10px;
}
.section-sub {
  font-size: .96rem; color: var(--text-mid); margin-bottom: 40px;
}

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; font-family: var(--body); font-weight: 600;
  font-size: .9rem; padding: 13px 26px; border-radius: var(--r-sm);
  min-height: 48px; white-space: nowrap; border: 2px solid transparent;
  transition: background var(--ease), color var(--ease);
  cursor: pointer; line-height: 1;
}
.btn-blue {
  background: var(--blue); color: var(--white); border-color: var(--blue);
}
.btn-blue:hover, .btn-blue:focus-visible {
  background: var(--blue-dk); border-color: var(--blue-dk);
}
.btn-outline {
  background: transparent; color: var(--blue); border-color: var(--blue);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--blue); color: var(--white);
}
.btn-gold {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}
.btn-gold:hover, .btn-gold:focus-visible {
  background: var(--gold-dk); border-color: var(--gold-dk);
}
.btn-ghost {
  background: rgba(255,255,255,.12); color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(255,255,255,.22); border-color: var(--white);
}
.btn-lg { font-size: 1rem; padding: 16px 36px; }
.btn-sm { font-size: .82rem; padding: 9px 18px; min-height: 38px; }

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dk);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.13); }

.hdr-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding-top: 10px; padding-bottom: 10px;
  min-height: 62px;
}
.hdr-logo { text-decoration: none; flex-shrink: 0; }
.hdr-logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.hdr-logo-main {
  font-family: var(--display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--navy); letter-spacing: -.01em;
}
.hdr-logo-sub {
  font-size: .62rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-top: 2px;
}
.hdr-logo:hover .hdr-logo-main { color: var(--blue); }

/* Footer text logo */
.ftr-logo-link {
  display: inline-flex; flex-direction: column;
  line-height: 1; text-decoration: none;
  margin-bottom: 14px;
}
.ftr-logo-main {
  font-family: var(--display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--white); letter-spacing: -.01em;
}
.ftr-logo-sub {
  font-size: .62rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-top: 3px;
}

/* Desktop nav — hidden on mobile */
.hdr-nav     { display: none; }
.hdr-book-btn{ display: none; }

/* Hamburger */
.hdr-hamburger {
  display: flex; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 7px;
  background: none; border: none; cursor: pointer;
  border-radius: var(--r-sm);
  transition: background var(--ease);
}
.hdr-hamburger:hover { background: var(--blue-lt); }
.hdr-hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--text);
  transition: transform var(--ease), opacity var(--ease);
}
.hdr-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-hamburger.open span:nth-child(2) { opacity: 0; }
.hdr-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer Menu */
.mobile-menu {
  position: fixed; top: 62px; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: var(--white);
  z-index: 190;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease;
  box-shadow: var(--shadow-lg);
  padding-bottom: 80px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav ul { padding: 8px 0; }
.mobile-menu nav li a {
  display: block; padding: 11px 24px;
  font-size: .92rem; font-weight: 500; color: var(--text);
  transition: background var(--ease), color var(--ease);
  border-left: 3px solid transparent;
}
.mobile-menu nav li a:hover {
  background: var(--blue-lt); color: var(--blue);
  border-left-color: var(--blue);
}
.mob-menu-section {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-lt);
  padding: 14px 24px 4px;
}
.mob-menu-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--cream-dk);
  display: flex; flex-direction: column; gap: 8px;
}
.mob-menu-phone {
  font-size: .85rem; font-weight: 600; color: var(--blue);
  display: flex; align-items: center; gap: 6px;
}

/* Overlay */
.mobile-menu-overlay {
  position: fixed; inset: 0; z-index: 180;
  background: rgba(13,27,42,.5);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }

/* ══════════════════════════════
   BREADCRUMB
══════════════════════════════ */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dk);
  padding: 10px 0;
}
.breadcrumb ol {
  display: flex; align-items: center;
  gap: 0; flex-wrap: wrap;
  font-size: .78rem; color: var(--text-lt);
}
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb li + li::before {
  content: '›'; margin: 0 7px; color: var(--text-lt);
}
.breadcrumb a {
  color: var(--blue); font-weight: 500;
  transition: color var(--ease);
}
.breadcrumb a:hover { color: var(--blue-dk); }
.breadcrumb [aria-current="page"] {
  color: var(--text-mid); font-weight: 600;
}

/* ══════════════════════════════
   KEN BURNS / HERO SLIDESHOW
══════════════════════════════ */
/* Hero slide — static, no animation */
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
}
.hero-slide:first-child {
  opacity: 1;
}
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(13,27,42,.20) 0%,
    rgba(13,27,42,.55) 100%);
}
.hero-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 2;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--gold));
}

/* ══════════════════════════════
   CARD BASE
══════════════════════════════ */
.card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
}

.card-img {
  overflow: hidden; background: var(--cream-dk);
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
}

.card-body { padding: 22px; }
.card-body h3 {
  font-family: var(--display); font-size: 1.25rem;
  font-weight: 700; color: var(--text); margin-bottom: 8px;
}
.card-body p { font-size: .9rem; color: var(--text-mid); }

/* ══════════════════════════════
   BADGE / TAG
══════════════════════════════ */
.badge {
  display: inline-flex; align-items: center;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.badge-gold  { background: var(--gold);      color: var(--white); }
.badge-blue  { background: var(--blue);      color: var(--white); }
.badge-cream { background: var(--cream);     color: var(--text-mid); border: 1px solid var(--cream-dk); }
.badge-soon  { background: #FFF8E1; color: #795548; border: 1px solid #FFD54F; font-size: .65rem; }

/* ══════════════════════════════
   PHOTO STRIP
══════════════════════════════ */
.photo-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.ps-item {
  position: relative; overflow: hidden;
  aspect-ratio: 1; display: block;
  background: var(--navy);
}
.ps-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.ps-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,27,42,.82) 0%, transparent 100%);
  color: var(--white); font-size: .75rem; font-weight: 600;
  padding: 32px 10px 10px; letter-spacing: .04em;
}

/* ══════════════════════════════
   QUICK ACTION STRIP
══════════════════════════════ */
.quick-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--gold);
  background: var(--white); box-shadow: var(--shadow-md);
}
.qs-item {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 14px 6px; text-align: center;
  border-right: 1px solid var(--cream-dk);
  transition: background var(--ease); color: var(--text);
  position: relative;
}
.qs-item:last-child { border-right: none; }
.qs-item:hover { background: var(--blue-lt); }
.qs-icon  { font-size: 1.4rem; margin-bottom: 3px; }
.qs-label { font-size: .68rem; font-weight: 600; line-height: 1.3; color: var(--text-mid); }
.qs-sub   { display: block; font-size: .62rem; color: var(--blue); font-weight: 700; margin-top: 2px; }
.qs-badge {
  position: absolute; top: 0; right: 0;
  background: #E53935; color: var(--white);
  font-size: .55rem; font-weight: 700;
  padding: 2px 6px; border-radius: 0 0 0 6px; letter-spacing: .04em;
}
.qs-order { background: var(--blue); }
.qs-order .qs-label { color: rgba(255,255,255,.9); }
.qs-order .qs-sub   { color: var(--gold-lt); }
.qs-order:hover     { background: var(--blue-dk); }

/* ══════════════════════════════
   TRUST / STATS BAR
══════════════════════════════ */
.trust-bar { background: var(--blue); padding: 44px 0; }
.trust-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px; text-align: center;
}
.trust-num {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700; color: var(--gold-lt);
  display: block; line-height: 1; margin-bottom: 5px;
}
.trust-lbl { font-size: .82rem; color: rgba(255,255,255,.8); font-weight: 500; }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.testi-card {
  background: var(--white); border-radius: var(--r-md); padding: 24px;
  box-shadow: var(--shadow-sm); border-top: 3px solid var(--gold);
}
.testi-quote {
  font-family: var(--display); font-size: 2.5rem;
  color: var(--gold-lt); line-height: 1; margin-bottom: 8px;
}
.testi-text {
  font-size: .92rem; color: var(--text-mid);
  line-height: 1.65; margin-bottom: 14px; font-style: italic;
}
.testi-author { font-weight: 600; font-size: .85rem; color: var(--text); }
.testi-source { font-size: .75rem; color: var(--text-lt); }

/* ══════════════════════════════
   CONTACT / LOCATION CARDS
══════════════════════════════ */
.loc-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.loc-card {
  background: var(--white); border-radius: var(--r-md); padding: 28px;
  border-left: 4px solid var(--gold); box-shadow: var(--shadow-sm);
}
.loc-card h3 {
  font-family: var(--display); font-size: 1.2rem;
  font-weight: 700; margin-bottom: 6px; color: var(--text);
}
.loc-address { font-size: .88rem; color: var(--text-mid); margin-bottom: 16px; line-height: 1.5; }
.phone-group { margin-bottom: 14px; }
.phone-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-lt); margin-bottom: 4px;
  display: block;
}
.phone-nums { display: flex; flex-wrap: wrap; gap: 10px; }
.phone-nums a {
  font-size: .9rem; font-weight: 600; color: var(--blue);
  transition: color var(--ease);
}
.phone-nums a:hover { color: var(--blue-dk); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,.7);
  padding: 60px 0 28px;
}
.ftr-grid {
  display: grid; grid-template-columns: 1fr; gap: 36px;
  margin-bottom: 40px;
}
.ftr-brand p   { font-size: .88rem; line-height: 1.7; max-width: 300px; }
.ftr-social    { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.ftr-social a  {
  font-size: .82rem; color: rgba(255,255,255,.5);
  transition: color var(--ease);
}
.ftr-social a:hover { color: var(--gold-lt); }

.site-footer h4 {
  font-family: var(--display); font-size: .95rem; font-weight: 600;
  color: var(--white); margin-bottom: 14px; padding-bottom: 7px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer nav ul { display: flex; flex-direction: column; gap: 9px; }
.site-footer nav a  {
  font-size: .86rem; color: rgba(255,255,255,.6);
  transition: color var(--ease);
}
.site-footer nav a:hover { color: var(--gold-lt); }

/* Footer contact strip */
.ftr-contact-strip {
  display: flex; flex-direction: column; gap: 16px;
  padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1);
  margin-bottom: 20px;
}
.ftr-contact-label {
  display: block; font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 4px;
}
.ftr-contact-nums { display: flex; flex-wrap: wrap; gap: 10px; }
.ftr-contact-nums a {
  font-size: .88rem; font-weight: 600;
  color: rgba(255,255,255,.8); transition: color var(--ease);
}
.ftr-contact-nums a:hover { color: var(--white); }

.ftr-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 18px; text-align: center;
  font-size: .76rem; color: rgba(255,255,255,.35);
}

/* ══════════════════════════════
   MOBILE BOTTOM NAV
══════════════════════════════ */
.mob-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--white); border-top: 1px solid var(--cream-dk);
  display: grid; grid-template-columns: repeat(5, 1fr);
  box-shadow: 0 -4px 20px rgba(0,0,0,.10);
}
.mob-nav-item {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 8px 4px; gap: 2px;
  font-size: .6rem; font-weight: 600; color: var(--text-lt);
  min-height: 56px;
  transition: color var(--ease), background var(--ease);
}
.mob-nav-item:hover,
.mob-nav-item.mob-active,
.mob-nav-item[aria-current] { color: var(--blue); }
.mob-nav-icon { font-size: 1.25rem; }
.mob-order { background: var(--blue); color: var(--white) !important; }
.mob-order:hover { background: var(--blue-dk); }

/* ══════════════════════════════
   NAV — desktop dropdown tags
══════════════════════════════ */
.drop-coming {
  font-style: normal; font-size: .65rem; font-weight: 700;
  background: var(--gold); color: var(--white);
  padding: 1px 6px; border-radius: 100px;
  margin-left: 4px; vertical-align: middle;
}

/* ══════════════════════════════
   DESKTOP BREAKPOINTS
══════════════════════════════ */
@media (min-width: 768px) {
  .trust-grid   { grid-template-columns: repeat(4, 1fr); }
  .testi-grid   { grid-template-columns: repeat(2, 1fr); }
  .loc-grid     { grid-template-columns: repeat(2, 1fr); }
  .ftr-grid     { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .photo-strip-grid { grid-template-columns: repeat(6, 1fr); }
  .ps-item      { aspect-ratio: 3/4; }
  .ps-item:first-child { grid-column: span 2; aspect-ratio: unset; }
  .ftr-contact-strip { flex-direction: row; gap: 0; }
  .ftr-contact-item  { flex: 1; padding-right: 20px; }
}

@media (min-width: 1024px) {
  body { padding-bottom: 0; }

  /* Hide mobile elements */
  .mob-nav       { display: none; }
  .hdr-hamburger { display: none; }
  .mobile-menu   { display: none; }
  .mobile-menu-overlay { display: none; }

  /* Show desktop elements */
  .hdr-nav {
    display: flex; align-items: center; flex: 1;
    justify-content: center;
  }
  .hdr-nav ul {
    display: flex; align-items: center; gap: 2px;
  }
  .hdr-nav a {
    display: block; padding: 8px 13px;
    font-size: .88rem; font-weight: 500; color: var(--text);
    border-radius: var(--r-sm); white-space: nowrap;
    transition: background var(--ease), color var(--ease);
  }
  .hdr-nav a:hover,
  .hdr-nav a.nav-active { background: var(--blue-lt); color: var(--blue); }
  .hdr-nav a.nav-active  { font-weight: 600; }
  .hdr-nav .nav-order-cta {
    background: var(--gold); color: var(--white) !important;
    border-radius: var(--r-sm); padding: 8px 16px; font-weight: 600;
  }
  .hdr-nav .nav-order-cta:hover { background: var(--gold-dk); }

  /* Dropdowns */
  .hdr-nav .has-drop { position: relative; }
  .hdr-nav .drop {
    position: absolute; top: calc(100% + 6px); left: 0;
    background: var(--white); border: 1px solid var(--cream-dk);
    border-radius: var(--r-md); box-shadow: var(--shadow-lg);
    padding: 8px; min-width: 220px;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
    z-index: 400;
  }
  .hdr-nav .has-drop:hover .drop,
  .hdr-nav .has-drop:focus-within .drop {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .hdr-nav .drop a {
    font-size: .86rem; color: var(--text-mid); padding: 8px 12px;
    border-radius: var(--r-sm); display: block;
  }
  .hdr-nav .drop a:hover { color: var(--blue); background: var(--blue-lt); }
  .hdr-nav .drop-sect {
    font-size: .68rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--text-lt);
    padding: 8px 12px 3px; pointer-events: none; cursor: default;
  }
  .hdr-nav .drop-div {
    height: 1px; background: var(--cream-dk); margin: 4px 8px;
  }

  .hdr-book-btn { display: inline-flex; flex-shrink: 0; }
  .section      { padding: 88px 0; }
}

/* ══════════════════════════════
   ACCESSIBILITY & MOTION
══════════════════════════════ */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px; border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}