/* ============================================================
   MAHAKAL NIWAS — Shared Stylesheet
   Usage: <link rel="stylesheet" href="{% static 'css/mahakal-niwas.css' %}">
   Django static path: yourapp/static/css/mahakal-niwas.css
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  --saffron:       #C4560A;
  --saffron-light: #FAE8D8;
  --saffron-dark:  #8B3A05;
  --gold:          #B8891A;
  --gold-light:    #FDF4D5;
  --maroon:        #7B1F1F;
  --green:         #2B6040;
  --cream:         #FAF7F1;
  --cream-dark:    #F2EDE3;
  --ink:           #1A1008;
  --muted:         #6B5E4E;
  --border:        #E4D9CC;
  --white:         #ffffff;
  --wa-green:      #25D366;
  --wa-dark:       #1FAD57;
  --wa-text:       #15803D;
  --wa-bg:         #F0FDF4;
  --wa-border:     #86EFAC;
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-full:   40px;
  --nav-height:    64px;
  --max-width:     1000px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth;
      scroll-padding-top: calc(var(--nav-height))!important;
      }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; }

/* ── LAYOUT HELPERS ── */
.inner        { max-width: var(--max-width); margin: 0 auto; }
.inner--wide  { max-width: 1200px; margin: 0 auto; }
.inner--narrow{ max-width: 720px;  margin: 0 auto; }
section       { padding: 3rem 2rem; }
.bg-white     { background: var(--white); }
.bg-cream     { background: var(--cream); }
.bg-cream-dark{ background: var(--cream-dark); }
.bg-maroon    { background: var(--maroon); }

/* ── TYPOGRAPHY ── */
.section-tag {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--saffron); font-weight: 500; margin-bottom: 0.5rem; display: block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--ink); line-height: 1.15; margin-bottom: 0.8rem;
}
.section-sub {
  font-size: 0.95rem; color: var(--muted); max-width: 520px; line-height: 1.7;
}
.page-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--ink); line-height: 1.1; margin-bottom: 0.6rem;
}

/* ── BADGES & PILLS ── */
.badge {
  font-size: 0.67rem; letter-spacing: 0.09em; text-transform: uppercase;
  background: var(--saffron-light); color: var(--saffron-dark);
  padding: 3px 10px; border-radius: var(--radius-sm);
  display: inline-block; margin-bottom: 0.6rem;
}
.badge--gold {
  background: var(--gold-light); color: var(--gold); border: 1px solid var(--gold);
}
.badge--coming {
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--gold-light); color: var(--gold); border: 1px solid var(--gold);
  padding: 2px 9px; border-radius: var(--radius-sm); margin-bottom: 0.6rem;
  display: inline-block;
}
.tag {
  font-size: 0.72rem; background: var(--cream); border: 1px solid var(--border);
  color: var(--muted); padding: 3px 10px; border-radius: var(--radius-sm);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block; text-decoration: none; font-weight: 500;
  font-size: 0.88rem; padding: 13px 32px; border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s, color 0.2s;
  cursor: pointer; border: none; font-family: 'DM Sans', sans-serif;
}
.btn--primary {
  background: var(--saffron); color: var(--white);
}
.btn--primary:hover { background: var(--saffron-dark); transform: translateY(-2px); }

.btn--outline {
  border: 1.5px solid var(--saffron); color: var(--saffron);
  background: transparent; padding: 12px 32px;
}
.btn--outline:hover { background: var(--saffron); color: var(--white); }

.btn--outline-light {
  border: 1.5px solid rgba(250,247,241,0.55); color: #FAF7F1; background: transparent;
}
.btn--outline-light:hover { border-color: #FAF7F1; background: rgba(255,255,255,0.08); }

.btn--white {
  background: var(--white); color: var(--saffron-dark);
}
.btn--white:hover { transform: translateY(-2px); }

.btn--sm { padding: 9px 20px; font-size: 0.82rem; }
.btn--block { display: block; text-align: center; width: 100%; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-height);
  background: rgba(250,247,241,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 600;
  color: var(--saffron-dark); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  z-index: 210; position: relative;
}
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.8rem; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--saffron); }
.nav-links a.nav-book {
  background: var(--saffron); color: var(--white);
  padding: 8px 22px; border-radius: var(--radius-sm);
}
.nav-links a.nav-book:hover { background: var(--saffron-dark); color: var(--white); }

/* ── BURGER BUTTON ── */
.nav-burger {
  display: none;           /* hidden on desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 6px;
  border-radius: var(--radius-sm);
  z-index: 210; position: relative;
  transition: background 0.2s;
}
.nav-burger:hover { background: var(--cream-dark); }
.nav-burger .bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, width 0.3s ease;
  transform-origin: center;
}

/* Burger → X animation when open */
.nav-burger.is-open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open .bar:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.is-open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
/*
  Strategy: drawer is always position:fixed and display:block on mobile,
  but hidden via translateY(-100%) + visibility:hidden + pointer-events:none.
  When open, translateY(0) + visibility:visible + pointer-events:auto.
  This guarantees links are fully tappable — no overflow:hidden clipping,
  no max-height collapse, no z-index fighting with the overlay.
*/
.nav-drawer {
  display: none;               /* switched to block inside @media below */
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(250,247,241,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 201;                /* above overlay AND above nav */
  padding: 1rem 1.5rem 1.5rem;
  /* Hidden state */
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1),
              opacity   0.25s ease,
              visibility 0s linear 0.28s;
}
.nav-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1),
              opacity   0.25s ease,
              visibility 0s linear 0s;
}
.nav-drawer ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 0;
}
.nav-drawer ul li a {
  display: block;
  width: 100%;
  font-size: 0.95rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--border);
  /* Large tap target — important for mobile */
  -webkit-tap-highlight-color: rgba(196,86,10,0.08);
  transition: color 0.15s, background 0.15s;
}
.nav-drawer ul li:last-child a { border-bottom: none; }
.nav-drawer ul li a:active,
.nav-drawer ul li a.active    { color: var(--saffron); background: var(--saffron-light); }
.nav-drawer .drawer-book {
  display: block;
  margin-top: 0.8rem;
  background: var(--saffron); color: var(--white) !important;
  text-align: center; padding: 13px !important;
  border-radius: var(--radius-sm); font-size: 0.9rem !important;
  border-bottom: none !important; border-radius: var(--radius-sm);
}
.nav-drawer .drawer-book:active { background: var(--saffron-dark) !important; }

.nav-drawer ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 0;
  width: 100%;
}

.nav-drawer ul li {
  width: 100%;
}

/* Overlay behind open drawer */
.nav-overlay {
  display: none;               /* switched to block inside @media below */
  position: fixed; inset: 0;
  background: rgba(26,16,8,0.3);
  z-index: 200;                /* above page content, below drawer (201) */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.28s ease, visibility 0s linear 0s;
}

/* Page body offset for fixed nav */
.page-body { margin-top: var(--nav-height); }

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  background: var(--cream-dark);
  padding: 3.5rem 2rem 3rem;
  border-bottom: 1px solid var(--border);
}
.page-hero .breadcrumb {
  font-size: 0.75rem; color: var(--muted); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 6px;
}
.page-hero .breadcrumb a { color: var(--saffron); text-decoration: none; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero .breadcrumb span { color: var(--border); }

/* ── STATS BAR ── */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--border); }
.stats-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat { padding: 1.6rem 1rem; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-icon  { font-size: 1.2rem; margin-bottom: 4px; display: block; }
.stat-num   { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 600; display: block; color: var(--saffron-dark); line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--muted); margin-top: 3px; display: block; }

/* ── ROOM CARDS (index + rooms list) ── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.room-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}
.room-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.09); }
.room-card__img {
  width: 100%; height: 210px; object-fit: cover; display: block;
}
.room-card__img-placeholder {
  height: 210px; background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.room-card__body   { padding: 1.3rem 1.5rem 1.5rem; }
.room-card__name   { font-size: 1.35rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
.room-card__desc   { font-size: 0.86rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.65; }
.room-card__tags   { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.1rem; }

/* ── ROOM DETAIL PAGE ── */
.room-detail-grid {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 2.5rem; margin-top: 2rem;
  align-items: start;
}
.room-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.room-gallery__main {
  grid-column: 1 / -1;
  width: 100%; height: 320px; object-fit: cover;
  border-radius: var(--radius-md);
}
.room-gallery__main-placeholder {
  grid-column: 1 / -1; height: 320px; border-radius: var(--radius-md);
  background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-size: 4rem;
}
.room-gallery__thumb {
  width: 100%; height: 160px; object-fit: cover; border-radius: var(--radius-sm);
}
.room-gallery__thumb-placeholder {
  height: 160px; border-radius: var(--radius-sm); background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.room-info-panel {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.8rem;
  position: sticky; top: calc(var(--nav-height) + 1.5rem);
}
.room-info-panel h3 { font-size: 1.5rem; margin-bottom: 0.3rem; color: var(--ink); }
.room-info-panel .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600; color: var(--saffron-dark);
  display: block; margin-bottom: 1.2rem;
}
.room-info-panel .price small {
  font-size: 0.9rem; color: var(--muted); font-family: 'DM Sans', sans-serif; font-weight: 400;
}
.room-amenity-list { list-style: none; margin-bottom: 1.4rem; }
.room-amenity-list li {
  font-size: 0.86rem; color: var(--muted);
  padding: 7px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.room-amenity-list li:last-child { border-bottom: none; }
.room-amenity-list li span { font-size: 1rem; }

/* ── AMENITY GRID ── */
.amenities-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 1.1rem; margin-top: 2.5rem;
}
.amen-card {
  padding: 1.4rem 1.2rem; border: 1px solid var(--border);
  border-radius: var(--radius-md); background: var(--cream); text-align: center;
}
.amen-card--soon { opacity: 0.6; border-style: dashed; }
.amen-card .icon { font-size: 1.9rem; margin-bottom: 0.65rem; display: block; }
.amen-card h4    { font-size: 0.95rem; color: var(--ink); margin-bottom: 0.3rem; font-family: 'DM Sans',sans-serif; font-weight: 500; }
.amen-card p     { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

/* ── LOCATION / TRANSPORT ── */
.transport-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem; margin-top: 2.5rem;
}
.transport-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.4rem 1.3rem;
}
.transport-card .transport-icon  { font-size: 1.8rem; margin-bottom: 8px; display: block; }
.transport-card .transport-dist  { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--saffron-dark); display: block; line-height: 1.1; }
.transport-card .transport-name  { font-size: 0.88rem; font-weight: 500; color: var(--ink); margin: 4px 0 6px; display: block; }
.transport-card .transport-note  { font-size: 0.78rem; color: var(--muted); line-height: 1.55; }

/* ── MAP SECTION ── */
.map-section { background: var(--cream-dark); }
.map-wrapper {
  margin-top: 2rem; border-radius: var(--radius-md);
  overflow: hidden; border: 1px solid var(--border);
  position: relative;
}
/* Placeholder shown until real map is embedded */
.map-placeholder {
  width: 100%; height: 420px;
  background: linear-gradient(135deg, #E8DDD0 0%, #D4C8B8 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; text-align: center; padding: 2rem;
}
.map-placeholder .map-icon { font-size: 3.5rem; }
.map-placeholder h4 { font-size: 1.3rem; color: var(--ink); }
.map-placeholder p  { font-size: 0.85rem; color: var(--muted); max-width: 400px; line-height: 1.6; }
/* Real embed: replace .map-placeholder with an <iframe> */
.map-embed {
  width: 100%; height: 420px; border: none; display: block;
}
/* Directions bar */
.directions-bar {
  background: var(--white); border-top: 1px solid var(--border);
  padding: 1.2rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.directions-bar p { font-size: 0.85rem; color: var(--muted); }
.directions-bar p strong { color: var(--ink); }
.directions-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.directions-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 500; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.directions-btn--primary {
  background: var(--saffron); color: var(--white);
}
.directions-btn--primary:hover { background: var(--saffron-dark); transform: translateY(-1px); }
.directions-btn--outline {
  border: 1.5px solid var(--border); color: var(--muted); background: var(--white);
}
.directions-btn--outline:hover { border-color: var(--saffron); color: var(--saffron); }
.directions-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── EXPLORE CARDS ── */
.explore-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem; margin-top: 2.5rem;
}
.explore-card {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem; background: var(--cream);
  display: flex; align-items: flex-start; gap: 12px;
}
.explore-card .bullet {
  min-width: 8px; height: 8px; border-radius: 50%;
  background: var(--saffron); margin-top: 7px; flex-shrink: 0;
}
.explore-card h4 { font-size: 0.93rem; color: var(--ink); margin-bottom: 2px; font-family: 'DM Sans',sans-serif; font-weight: 500; }
.explore-card p  { font-size: 0.78rem; color: var(--muted); line-height: 1.55; }
.explore-card--highlight { border-color: var(--saffron-light); background: var(--saffron-light); }
.explore-card--highlight h4 { color: var(--saffron-dark); }

/* ── AARTI BANNER ── */
.aarti-banner { background: var(--maroon); padding: 3rem 2rem; }
.aarti-inner  { max-width: 820px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.aarti-text   { flex: 1; min-width: 260px; }
.aarti-text .label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: #F5C785; margin-bottom: 0.5rem; display: block; }
.aarti-text h3 { font-size: 1.8rem; color: #FAF7F1; margin-bottom: 0.6rem; }
.aarti-text p  { font-size: 0.88rem; color: rgba(250,247,241,0.75); line-height: 1.7; }
.aarti-detail { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-md); padding: 1.2rem 1.5rem; flex-shrink: 0; }
.aarti-detail p     { font-size: 0.82rem; color: rgba(250,247,241,0.8); margin-bottom: 4px; }
.aarti-detail .time { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: #F5C785; font-weight: 600; }

/* ── WHATSAPP FLOATING BUTTON ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa-green); box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.wa-float svg { width: 30px; height: 30px; fill: white; }
.wa-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: white; color: var(--ink); font-size: 0.78rem; font-weight: 500;
  padding: 6px 12px; border-radius: 6px; box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity 0.2s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ── WHATSAPP CONTACT CARD ── */
.wa-card         { background: var(--wa-bg); border: 1px solid var(--wa-border); }
.wa-card h3      { color: var(--wa-text); }
.wa-number       { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--wa-text); margin-bottom: 0.8rem; display: block; }
.wa-options      { display: flex; flex-direction: column; gap: 10px; }
.wa-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--wa-green); color: white;
  padding: 11px 18px; border-radius: 6px; text-decoration: none;
  font-size: 0.85rem; font-weight: 500; transition: background 0.2s, transform 0.15s;
}
.wa-btn:hover { background: var(--wa-dark); transform: translateX(3px); }
.wa-btn svg   { width: 18px; height: 18px; fill: white; flex-shrink: 0; }
.wa-btn-outline {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--wa-green); color: var(--wa-text);
  padding: 10px 18px; border-radius: 6px; text-decoration: none;
  font-size: 0.85rem; font-weight: 500; transition: background 0.2s;
}
.wa-btn-outline:hover { background: #dcfce7; }
.wa-btn-outline svg { width: 18px; height: 18px; fill: var(--wa-green); flex-shrink: 0; }
.wa-note {
  font-size: 0.72rem; color: #166534; margin-top: 12px; line-height: 1.6;
  padding: 8px 12px; background: rgba(37,211,102,0.08);
  border-radius: var(--radius-sm); border-left: 3px solid var(--wa-green);
}

/* ── CONTACT / FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; }
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem; }
.contact-card h3    { font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--ink); }
.contact-card > p   { font-size: 0.86rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.65; }
.form-group         { margin-bottom: 1rem; }
.form-group label   { display: block; font-size: 0.78rem; color: var(--muted); margin-bottom: 5px; font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 9px 13px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  background: var(--cream); color: var(--ink); transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--saffron); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; background: var(--saffron); color: white;
  padding: 11px; border-radius: var(--radius-sm); border: none;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: var(--saffron-dark); }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--saffron-dark) 0%, var(--saffron) 100%); padding: 4.5rem 2rem; text-align: center; }
.cta-banner h2 { font-size: 2.6rem; color: white; margin-bottom: 0.8rem; }
.cta-banner p  { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 0.95rem; }

/* ── FOOTER ── */
footer { background: var(--ink); color: rgba(250,247,241,0.65); padding: 3.5rem 2rem 2rem; }
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo    { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: #FAF7F1; margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.82rem; color: rgba(250,247,241,0.5); line-height: 1.7; max-width: 270px; margin-bottom: 1rem; }
.footer-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wa-green); color: white;
  padding: 8px 16px; border-radius: var(--radius-sm);
  text-decoration: none; font-size: 0.8rem; font-weight: 500; transition: background 0.2s;
}
.footer-wa:hover { background: var(--wa-dark); }
.footer-wa svg  { width: 16px; height: 16px; fill: white; }
footer h4 { color: #FAF7F1; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; font-family: 'DM Sans',sans-serif; font-weight: 500; }
footer a  { display: block; color: rgba(250,247,241,0.55); text-decoration: none; font-size: 0.83rem; margin-bottom: 0.45rem; transition: color 0.2s; }
footer a:hover { color: #FAF7F1; }
.footer-bottom { max-width: var(--max-width); margin: 1.5rem auto 0; font-size: 0.75rem; text-align: center; color: rgba(250,247,241,0.3); }

/* ── Anchor offset for fixed nav ── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 12px);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .room-detail-grid { grid-template-columns: 1fr; }
  .room-info-panel  { position: static; }
}
@media (max-width: 720px) {
  /* Show burger, hide desktop links */
  .nav-links  { display: none; }
  .nav-burger { display: flex; }

  /* Drawer and overlay: block so JS can control visibility */
  .nav-drawer  { display: block; }
  .nav-overlay { display: block; }

  /* Tighten nav on small screens */
  .site-nav { padding: 0 1.2rem; }

  /* Layout adjustments */
  .stats-inner    { grid-template-columns: 1fr 1fr; }
  .stat           { border-bottom: 1px solid var(--border); }
  .contact-grid   { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr; gap: 2rem; }
  .form-row       { grid-template-columns: 1fr; }
  .aarti-inner    { flex-direction: column; }
  .directions-bar { flex-direction: column; align-items: flex-start; }
  .room-gallery       { grid-template-columns: 1fr; }
  .room-gallery__main { height: 240px; }
  .room-gallery__thumb{ height: 140px; }
  .map-placeholder,
  .map-embed      { height: 280px; }
}