/* ═══════════════════════════════════════════════════════════════
   Green One Hotel : Main Stylesheet
   To change colors, edit the variables in :root below.
   To change fonts, edit the @import line and the font-family values.
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens : Edit these to change the look ─────────── */
:root {
  --green-dark:   #1a3828;   /* navbar, footer, dark buttons  */
  --green-medium: #2d5a3d;   /* hover states, accents         */
  --green-light:  #4a7c59;   /* lighter green accents         */
  --brown:        #8B6542;   /* tour "Explore" buttons        */
  --brown-dark:   #6e4f31;   /* tour button hover             */
  --bg-light:     #f2f1ed;   /* light section backgrounds     */
  --bg-white:     #ffffff;
  --text-dark:    #111111;
  --text-muted:   #6b7280;
  --text-light:   #9ca3af;
  --border:       #e5e5e5;
  --shadow:       0 4px 24px var(--card-shadow-color);
  --shadow-hover: 0 8px 32px var(--card-shadow-color-hover);
  --radius:       12px;
  --radius-sm:    8px;
  --card-shadow-color: rgba(0,0,0,0.08);
  --card-shadow-color-hover: rgba(0,0,0,0.14);

  /* Font families : change here to use different fonts */
  --font-heading: 'Manrope', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Motion timing : used by the scroll reveal / hover effects below */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Dark Mode : toggled by the moon/sun button in the navbar ──────
   Site defaults to light mode. Visiting again remembers the last
   choice (saved in the browser's localStorage as "goh-theme").
   Only the tokens below change — every component that already uses
   var(--bg-white), var(--bg-light), var(--text-dark) etc. adapts
   automatically, so no other CSS needed to be rewritten. ────────── */
html[data-theme="dark"] {
  --bg-light:     #1c2420;   /* light section backgrounds -> dark surface */
  --bg-white:     #232c27;   /* card / panel background -> dark surface   */
  --text-dark:    #f2f1ed;   /* main text -> light on dark                */
  --text-muted:   #b7c0ba;
  --text-light:   #8a938c;
  --border:       #384039;
  --card-shadow-color: rgba(0,0,0,0.35);
  --card-shadow-color-hover: rgba(0,0,0,0.5);
}

html[data-theme="dark"] body { background: #141a17; }

/* prefers-reduced-motion fix:
   Windows 'Show animations' OFF sends this signal to the browser.
   The original rule set transition-duration:0.01ms on EVERYTHING —
   which killed the scroll-reveal fade-in too.
   Now we only disable keyframe animations and parallax (which can
   cause dizziness), but keep the gentle opacity/translate reveal. */
@media (prefers-reduced-motion: reduce) {
  /* Kill looping / keyframe animations only */
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  /* Keep scroll cue alive — subtle dot movement, not dizzying */
  .hero-scroll-cue::before {
    animation-duration: 1.8s !important;
    animation-iteration-count: infinite !important;
    animation-name: scroll-cue-move !important;
  }
  /* Keep WhatsApp pulse alive but toned down */
  .whatsapp-btn {
    animation-duration: 3.2s !important;
    animation-iteration-count: infinite !important;
    animation-name: whatsapp-pulse !important;
  }
  /* Hero parallax can feel dizzying — disable it */
  #heroBg {
    transform: none !important;
    transition: none !important;
  }
  /* Reveal: keep a short, subtle fade (no Y movement) instead of 0.01ms */
  .reveal {
    transform: none !important;
    transition: opacity 0.4s ease !important;
  }
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }

p { color: var(--text-muted); line-height: 1.7; }

/* ── Utility Classes ────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-light { background: var(--bg-light); }

.label-sm {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-green {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
}
.btn-green:hover {
  background: var(--green-medium);
  border-color: var(--green-medium);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline-dark:hover {
  background: var(--green-dark);
  color: #fff;
}

.btn-brown {
  background: var(--brown);
  color: #fff;
  border-color: var(--brown);
  width: 100%;
}
.btn-brown:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
}

.btn-full { width: 100%; }

.view-all {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.view-all:hover { gap: 8px; color: var(--green-medium); }


/* ════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  /* Solid background (not translucent + blurred) on purpose: a
     backdrop-filter here would make this element a "containing
     block" for its fixed-position children (the mobile menu /
     Book Now button), which pushes that mobile menu to the wrong
     spot on phones instead of the full screen. */
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  height: 64px;
  transition: height 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

/* Added by JS (main.js) once the page scrolls a little, so the
   navbar tightens up and gains a subtle shadow. */
.navbar.scrolled {
  height: 56px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* Logo image in the navbar */
.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  /* Crisp rendering for the circular logo */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Hotel name text beside the logo */
.nav-logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-dark);
  letter-spacing: -0.01em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-dark); }

/* Animated underline that grows from the center on hover / active */
.nav-links a:not(.nav-book)::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--green-dark);
  transition: width 0.25s var(--ease), left 0.25s var(--ease);
}
.nav-links a:not(.nav-book):hover::after,
.nav-links a:not(.nav-book).active::after {
  width: 100%;
  left: 0;
}
@media (max-width: 768px) {
  .nav-links a::after { display: none; }
}

/* Scroll progress bar: fixed thin strip under the navbar showing how
   far down the current page the visitor has scrolled. Updated by main.js. */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--green-light), var(--brown));
  z-index: 200;
  transition: width 0.1s linear;
}

.nav-book {
  background: var(--green-dark);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.88rem !important;
  transition: background 0.2s !important;
}
.nav-book:hover { background: var(--green-medium) !important; }

/* Dark mode toggle button in the navbar */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: none;
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  margin-left: 4px;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--bg-light); }
.theme-icon-moon { display: none; }
html[data-theme="dark"] .theme-icon-sun  { display: none; }
html[data-theme="dark"] .theme-icon-moon { display: block; }

/* On phones the toggle lives inside the slide-down nav menu (see the
   mobile ".nav-links" rules further down). There it is shown as a full
   width row with a label, matching the other menu links, instead of a
   lone circle icon — easier to tap and clearly explains what it does. */
.theme-toggle-label { display: none; }
@media (max-width: 768px) {
  .nav-theme-item {
    padding: 4px 12px 0;
    border-top: 1px solid var(--border);
    margin-top: 8px;
  }
  .theme-toggle {
    width: 100%;
    height: auto;
    margin-left: 0;
    justify-content: flex-start;
    gap: 10px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
  }
  .theme-toggle-label { display: inline; }
  .theme-toggle-label::before { content: 'Dark Mode'; }
  html[data-theme="dark"] .theme-toggle-label::before { content: 'Light Mode'; }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s;
  border-radius: 2px;
}

/* Mobile nav */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  /* ── Mobile nav panel ── */
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--bg-white);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    /* Start off-screen above the viewport */
    transform: translateY(-150vh);
    visibility: hidden;
    transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), visibility 0.28s;
    z-index: 99;
    /* Prevent overflow on very short phones */
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateY(0);
    visibility: visible;
  }

  /* Every nav link — clean, no borders, no underlines */
  .nav-links a {
    display: block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    border-bottom: none;   /* ← all lines removed */
    border-radius: 0;
    color: var(--text-dark);
    transition: background 0.15s ease, color 0.15s ease;
  }

  .nav-links a:hover { background: var(--bg-light); color: var(--green-dark); }
  .nav-links a.active { color: var(--green-dark); font-weight: 600; }

  /* Book Now — full-width green pill at the bottom of the menu */
  .nav-book-item {
    padding: 16px 28px 0;
  }

  .nav-links .nav-book {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 14px 20px !important;
    text-align: center !important;
    border-radius: 8px !important;
    border-bottom: none !important;   /* no line on the button */
    font-size: 1rem !important;
    background: var(--green-dark) !important;
    color: #fff !important;
    font-weight: 600 !important;
  }

  .nav-links .nav-book:hover {
    background: var(--green-medium) !important;
    color: #fff !important;
  }
}


/* ════════════════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero/hero-main.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.48);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content .label-sm {
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  display: block;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Gentle parallax on the hero background image, driven by main.js.
   Guarded there for reduced-motion and disabled on small screens where
   it adds no visual value and only costs battery. */
.hero-bg {
  will-change: transform;
}

/* Soft floating gradient blobs behind the hero content, purely
   decorative. Skipped on small screens (not visible behind the
   overlay anyway) and frozen for reduced-motion users. */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
  animation: blob-float 14s ease-in-out infinite;
}
.hero-blob-1 {
  width: 420px; height: 420px;
  top: -120px; left: -100px;
  background: radial-gradient(circle, var(--green-light), transparent 70%);
}
.hero-blob-2 {
  width: 380px; height: 380px;
  bottom: -140px; right: -80px;
  background: radial-gradient(circle, var(--brown), transparent 70%);
  animation-delay: -7s;
}
@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -24px) scale(1.08); }
}
@media (max-width: 640px) {
  .hero-blob { display: none; }
}

.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  z-index: 1;
}
.hero-scroll-cue::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-cue-move 1.8s infinite;
}
@keyframes scroll-cue-move {
  0%   { opacity: 1; top: 6px; }
  70%  { opacity: 0; top: 18px; }
  100% { opacity: 0; top: 6px; }
}
/* Scroll cue visible on all screen sizes */


/* ════════════════════════════════════════════════════════════
   SCROLL REVEAL
   Added by main.js: elements with class="reveal" fade and rise
   into place the first time they enter the viewport.
   ════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  /* GPU-accelerated compositing — improves LCP and avoids jank on both
     mobile and desktop by promoting the element to its own layer */
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  /* Release will-change after animation completes to free GPU memory */
  will-change: auto;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--green-medium); }
@media (max-width: 640px) {
  .back-to-top { bottom: 24px; left: 20px; width: 40px; height: 40px; }
}


/* ════════════════════════════════════════════════════════════
   ABOUT SECTION
   ════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 { margin-bottom: 20px; color: var(--text-dark); }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.about-feature h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.about-feature p { font-size: 0.9rem; }

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.about-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-images img:first-child {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 100%;
  min-height: 280px;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { display: none; }
  .about-features { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════════
   SECTION HEADER (with "View All" link)
   ════════════════════════════════════════════════════════════ */
.section-header {
  margin-bottom: 40px;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.section-header h2 { color: var(--text-dark); }
.section-header p  { max-width: 500px; margin-top: 8px; }


/* ════════════════════════════════════════════════════════════
   ROOM CARDS
   ════════════════════════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.room-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.room-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.room-card:hover .room-card-image img { transform: scale(1.05); }

.price-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(0,0,0,0.72);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.price-badge .per-night {
  font-weight: 400;
  opacity: 0.8;
  font-size: 0.75rem;
}

.room-card-body { padding: 20px; }

.room-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.room-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.room-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  margin-bottom: 18px;
}

.room-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   TOUR CARDS
   ════════════════════════════════════════════════════════════ */
.tour-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.tour-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tour-card:hover .tour-card-image img { transform: scale(1.05); }

.price-badge-green {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--green-dark);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.tour-card-body { padding: 20px; }

.tour-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.tour-card-body > p {
  font-size: 0.88rem;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.tour-duration svg { color: var(--text-light); flex-shrink: 0; }


/* ════════════════════════════════════════════════════════════
   GUEST REVIEWS
   ════════════════════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--brown);
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 18px;
}

.review-author { display: flex; flex-direction: column; }
.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.review-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════════
   HOME STATS STRIP
   Numbers count up from 0 the first time the strip scrolls into
   view (see main.js). Edit the numbers and labels from
   Admin > Site Content.
   ════════════════════════════════════════════════════════════ */
.home-stats-section {
  background: var(--green-dark);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.home-stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.home-stat-suffix { font-size: 0.55em; color: var(--brown); }

.home-stat-label {
  margin-top: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .home-stats-grid { grid-template-columns: 1fr 1fr; row-gap: 32px; }
}


/* ════════════════════════════════════════════════════════════
   PAGE HERO (interior page banner)
   ════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--bg-light);
  padding: 120px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--green-dark); margin-bottom: 12px; }
.page-hero p  { max-width: 500px; margin: 0 auto; }


/* ════════════════════════════════════════════════════════════
   ROOM DETAIL / TOUR DETAIL
   ════════════════════════════════════════════════════════════ */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.detail-main-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.detail-sidebar {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 80px;
}

.detail-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.detail-price-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.detail-features h4,
.detail-highlights h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.detail-features ul,
.detail-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.detail-features li,
.detail-highlights li {
  font-size: 0.9rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.detail-features li::before,
.detail-highlights li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
}


/* ════════════════════════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute;
  top: 20px; right: 28px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}


/* ════════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info { padding: 0; }

.contact-info h2 { margin-bottom: 28px; color: var(--text-dark); }

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-icon {
  width: 40px; height: 40px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-dark);
}

.contact-item-text h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-item-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-hours {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 28px;
}
.contact-hours h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-hours p { font-size: 0.88rem; }

/* Contact Form */
.contact-form-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-form-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(26,56,40,0.08);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.alert-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 20px;
}


/* Map */
.map-section {
  margin-top: 60px;
}

.map-section h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.map-section p {
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* FAQ accordion */
.faq-section { margin-top: 64px; }
.faq-section h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--text-muted);
}

.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Map section paragraph edit note above already covers spacing */


/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

/* Mini map shown at the very bottom of every page, above the main
   footer content. */
.footer-map-section { position: relative; }

.footer-map-frame {
  width: 100%;
  height: 240px;
  filter: grayscale(35%) contrast(1.05);
}
.footer-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.footer-map-caption {
  background: rgba(0,0,0,0.25);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-map-caption-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #fff;
}

.footer-map-directions {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-sm);
  transition: background 0.2s, border-color 0.2s, gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.footer-map-directions:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  gap: 8px;
}

@media (max-width: 640px) {
  .footer-map-frame { height: 180px; }
  .footer-map-caption { padding: 12px 20px; }
}

.footer-brand h3 {
  font-family: var(--font-body);
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.65); }

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}

.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,0.5); }

.footer-social { display: flex; flex-direction: column; gap: 12px; }

.footer-social h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.social-icons { display: flex; gap: 10px; }

.social-icons a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.social-icons a:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.footer-admin-link {
  display: block;
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-admin-link:hover { color: rgba(255,255,255,0.65); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-label {
  background: var(--bg-white);
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-label {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 16px rgba(37, 211, 102, 0.45),
    0 0 0 0 rgba(37, 211, 102, 0.4);
  animation: whatsapp-pulse 2.4s infinite;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-btn svg { width: 30px; height: 30px; fill: #fff; }

@keyframes whatsapp-pulse {
  0%   { box-shadow: 0 4px 16px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 4px 16px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 16px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}


/* ════════════════════════════════════════════════════════════
   ADMIN PANEL
   ════════════════════════════════════════════════════════════ */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 200px;
  background: var(--green-dark);
  padding: 24px 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.admin-sidebar-brand {
  padding: 0 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 16px;
}

.admin-sidebar-brand h2 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.admin-sidebar-brand p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.admin-sidebar-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.admin-sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.admin-sidebar-nav a:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}

.admin-sidebar-nav a.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-left-color: #fff;
}

.admin-sidebar-nav a svg { width: 17px; height: 17px; flex-shrink: 0; }

.admin-logout {
  padding: 0 0 8px;
  margin-top: auto;
}

.admin-logout a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.admin-logout a:hover { color: rgba(255,255,255,0.85); }

.admin-content {
  flex: 1;
  padding: 36px 40px;
  background: #f7f7f5;
  overflow-y: auto;
}

.admin-content h1 {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.admin-content .subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Stats cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.stat-card-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.stat-card-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.stat-card-link {
  font-size: 0.8rem;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.stat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Data table */
.admin-table-wrapper {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  overflow: hidden;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: #fafaf9;
}

.admin-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.88rem;
  color: var(--text-dark);
  vertical-align: middle;
}

.admin-table tr:last-child td { border-bottom: none; }

.admin-table img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; }

.admin-table .actions { display: flex; gap: 8px; align-items: center; }

.btn-icon {
  width: 32px; height: 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.btn-edit { background: #e0f2e9; color: #166534; }
.btn-edit:hover { background: #bbf7d0; }
.btn-delete { background: #fee2e2; color: #dc2626; }
.btn-delete:hover { background: #fecaca; }

/* Admin form */
.admin-form-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  max-width: 680px;
}

.admin-form-box .form-group input,
.admin-form-box .form-group select,
.admin-form-box .form-group textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.9rem;
  width: 100%;
  font-family: var(--font-body);
  outline: none;
}

.admin-form-box .form-group input:focus,
.admin-form-box .form-group select:focus,
.admin-form-box .form-group textarea:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(26,56,40,0.08);
}

.admin-form-box .form-group textarea { min-height: 100px; resize: vertical; }

.admin-form-box label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  display: block;
  margin-bottom: 6px;
}

.admin-form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Admin > Site Content page and small "add" forms (Reviews, FAQs) */
.admin-form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.content-section {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}

.content-section h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.content-section .form-group,
.admin-form-card .form-group { margin-bottom: 16px; }

.content-section .form-group label,
.admin-form-card .form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: block;
}

.content-section .form-row,
.admin-form-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.content-section input,
.content-section select,
.content-section textarea,
.admin-form-card input,
.admin-form-card select,
.admin-form-card textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}
.content-section input:focus,
.content-section select:focus,
.content-section textarea:focus,
.admin-form-card input:focus,
.admin-form-card select:focus,
.admin-form-card textarea:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(26,56,40,0.08);
}
.content-section textarea,
.admin-form-card textarea { min-height: 80px; resize: vertical; }

@media (max-width: 640px) {
  .content-section .form-row,
  .admin-form-card .form-row { grid-template-columns: 1fr; }
}

.admin-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

/* Admin login */
.admin-login-page {
  min-height: 100vh;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-login-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 44px 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.1);
  text-align: center;
}

.admin-login-icon {
  width: 52px; height: 52px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  font-family: var(--font-heading);
}

.admin-login-box h1 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.admin-login-box > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.error-msg {
  background: #fee2e2;
  color: #dc2626;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin-bottom: 16px;
  text-align: left;
}

/* Flash notification */
.flash-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: var(--bg-white);
  color: var(--text-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  min-width: 240px;
  animation: slideUp 0.3s ease;
}
.flash-toast.success { border-left: 4px solid #22c55e; }
.flash-toast-title { font-weight: 600; }

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Recent inquiries box */
.inquiries-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.inquiries-box h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.inquiry-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.88rem;
}
.inquiry-row:last-child { border-bottom: none; }
.inquiry-row .name { font-weight: 500; }
.inquiry-row .date { color: var(--text-muted); font-size: 0.8rem; }
.empty-state { color: var(--text-muted); font-size: 0.9rem; padding: 20px 0; text-align: center; }

/* Badge */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-new { background: #dcfce7; color: #166534; }
.badge-read { background: #f3f4f6; color: #6b7280; }

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; flex-direction: row; flex-wrap: wrap; }
  .admin-content { padding: 20px; }
}

@media (max-width: 768px) {
  .cards-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
/* ══════════════════════════════════════════════════════════════════
   GREEN ONE HOTEL — STYLE UPDATES
   ──────────────────────────────────────────────────────────────────
   HOW TO USE:
   Open your existing public/css/style.css file, scroll to the very
   bottom, and PASTE everything below this comment block at the end.
   Save the file. That's it — no other changes to style.css needed.
   ══════════════════════════════════════════════════════════════════ */


/* ── 1. "Contact for Price" badge on Room and Tour cards ───────────
   Replaces the old price badge (which showed Rs. amounts) with a
   clean "Contact for Price" pill shown on every card image.
   ──────────────────────────────────────────────────────────────── */
.contact-price-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--green-dark);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}


/* ── 2. "Contact for Price" tag on Room and Tour detail pages ──────
   Replaces the large Rs. price figure in the booking sidebar.
   ──────────────────────────────────────────────────────────────── */
.contact-price-tag {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
  padding: 10px 0 4px;
  border-bottom: 2px solid var(--green-light);
}


/* ── 3. Footer map frame — fix the gap/border at the bottom ────────
   The iframe inside the footer mini-map sometimes showed a thin
   white line or Google branding bleeding into the caption bar.
   overflow:hidden clips it, line-height:0 removes the inline gap.
   ──────────────────────────────────────────────────────────────── */
.footer-map-frame {
  overflow: hidden !important;
  line-height: 0 !important;
}


/* ── 4. Mobile nav overlay (dark backdrop) ─────────────────────────
   When the hamburger menu opens on a phone, a semi-transparent dark
   overlay now covers the page content behind the nav menu. Clicking
   the overlay closes the menu. Controlled by main.js via .open class.
   ──────────────────────────────────────────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  /* starts below the navbar so the navbar itself is still visible */
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 98;   /* sits behind the nav menu (z-index 99) */
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-overlay.open {
  display: block;
}


/* ── 5. Mobile hero — prevent heading from hiding behind the navbar ─
   On some Android phones (especially mid-range with Chrome or
   Samsung Internet), 100vh includes the browser toolbar height, which
   pushes the vertically-centred hero content partially behind the
   fixed 64px navbar so the label and top of the heading clip.
   Adding padding-top to the hero content fixes this on all devices.
   ──────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    /* Use svh (small viewport height) if the browser supports it so
       the hero fills exactly the visible area. Falls back to 100vh. */
    min-height: 100svh;
    min-height: 100vh;   /* fallback for browsers without svh support */
    align-items: flex-start;
  }

  .hero-content {
    /* Push content down so nothing is hidden behind the fixed navbar */
    padding-top: 96px;
    padding-bottom: 60px;
    text-align: center;
  }
}

/* ── 6. Tours page — Travel Information note ────────────────────────
   Subtle disclaimer shown below all tour cards, above the footer.
   Keeps the same font family as the rest of the site and uses a
   neutral gray palette so it feels informational, not intrusive.
   ──────────────────────────────────────────────────────────────── */
.travel-info-note {
  padding: 32px 0 40px;
  border-top: 1px solid #E5E7EB;
}

.travel-info-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.travel-info-icon {
  flex-shrink: 0;
  color: #9CA3AF;
  margin-top: 1px;
  opacity: 0.85;
}

.travel-info-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin: 0 0 5px;
}

.travel-info-body {
  font-size: 12.5px;
  line-height: 1.65;
  color: #9CA3AF;
  margin: 0;
}

@media (max-width: 600px) {
  .travel-info-inner {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .travel-info-icon {
    margin-top: 0;
  }
}



/* ══════════════════════════════════════════════════════════════════
   DARK MODE TEXT FIXES
   ──────────────────────────────────────────────────────────────────
   The dark-mode colour overrides in this file do NOT change
   --green-dark (#1a3828), so any element that uses --green-dark as
   a text colour becomes invisible on the dark background.
   The rules below restore readable colours for those elements.
   Light-mode appearance is completely unchanged.
   ══════════════════════════════════════════════════════════════════ */

/* Navbar logo text ("Green One Hotel") — was dark green, invisible on dark navbar */
html[data-theme="dark"] .nav-logo-text {
  color: #e8f0e9;
}

/* Interior page hero sections (Rooms, Tours, Gallery, Contact) */
html[data-theme="dark"] .page-hero {
  background: #182418;
}
html[data-theme="dark"] .page-hero h1 {
  /* was var(--green-dark) = #1a3828 — nearly invisible on dark bg */
  color: #e4ede5;
}
html[data-theme="dark"] .page-hero p {
  color: #8aaa90;
}

/* About section feature card headings */
html[data-theme="dark"] .about-feature h4 {
  color: #7ec898;
}

/* Detail sidebar price tag (room-detail & tour-detail booking box) */
html[data-theme="dark"] .contact-price-tag {
  color: #7ec898;
  border-bottom-color: #3a5e44;
}

/* Section-header h2 inherits --text-dark which IS overridden — ok.
   But h4/h3 elements using --green-dark need help: */
html[data-theme="dark"] .section-header h4,
html[data-theme="dark"] .about-label {
  color: #7ec898;
}

/* Cards heading colour is already var(--text-dark) — no change needed */

/* View-all arrow links */
html[data-theme="dark"] .view-all {
  color: #7ec898;
}
html[data-theme="dark"] .view-all:hover {
  color: #a8e6b8;
}

/* Tour / room card price badge */
html[data-theme="dark"] .contact-price-badge {
  background: #2d5a3e;
}

/* Travel info divider on tours page */
html[data-theme="dark"] .travel-info-note {
  border-top-color: #2a3b2e;
}

/* ── End of style-updates.css ────────────────────────────────────── */
