/* --- Premium Light Theme — Bamboo Fresh --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
  --primary: #3D7A3A;
  /* Deep bamboo green — vivid */
  --primary-light: #6BA368;
  /* Mid green */
  --primary-pale: #e8f5e8;
  /* Very light green tint */
  --secondary: #B8860B;
  /* Dark gold — readable */
  --accent: #D4AF37;
  /* Soft gold */

  --bg-main: #F2EDE3;
  /* Warm beige — site background */
  --bg-card: #FFFFFF;
  /* Pure white cards */
  --bg-footer: #1E2A22;
  /* Dark footer */

  --text-main: #1A2318;
  /* Near-black green — very dark */
  --text-muted: #4A5E4D;
  /* Medium dark green-grey */
  --text-light: #ffffff;
  /* White for dark backgrounds */

  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(61, 122, 58, 0.15);
  --glass-shadow: 0 8px 40px rgba(26, 35, 24, 0.10);

  --max-width: 1200px;
  --section-padding: 6rem 1.5rem;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Playfair Display', serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  font-style: normal;
}

/* ===== Animated Background ===== */
.bg-scene {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  background: linear-gradient(140deg, #F2EDE3 0%, #EBE4D6 60%, #E5F0E4 100%);
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 10% 10%;
  }
}

.ambient-glow {
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: radial-gradient(circle at 50% 50%, rgba(61, 122, 58, 0.08) 0%, transparent 60%);
  animation: glowPulse 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.7;
  }
}

/* Floating Leaves */
.leaf {
  position: absolute;
  width: 30px;
  height: 30px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%233D7A3A" opacity="0.4"><path d="M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8.17,20C14.31,20 19.38,14.93 19.38,8.79C19.38,8.51 19.41,8.13 19.38,7.74C19.38,7.34 19.16,7 18.23,7.18C17.83,7.25 17.43,7.62 17,8Z"/></svg>') no-repeat center center;
  pointer-events: none;
  opacity: 0.25;
}

.leaf-1 {
  top: 20%;
  left: 10%;
  animation: floatLeaf1 25s linear infinite;
}

.leaf-2 {
  top: 60%;
  left: 80%;
  animation: floatLeaf2 30s linear infinite;
  transform: rotate(45deg);
}

.leaf-3 {
  top: 10%;
  left: 70%;
  animation: floatLeaf1 22s linear infinite reverse;
}

.leaf-4 {
  top: 80%;
  left: 20%;
  animation: floatLeaf2 35s linear infinite;
}

@keyframes floatLeaf1 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -50px) rotate(45deg);
  }

  66% {
    transform: translate(-20px, -100px) rotate(90deg);
  }

  100% {
    transform: translate(0, -150px) rotate(120deg);
    opacity: 0;
  }
}

@keyframes floatLeaf2 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-40px, -80px) rotate(-30deg);
  }

  100% {
    transform: translate(20px, -160px) rotate(-60deg);
    opacity: 0;
  }
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  font-style: normal;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.5rem;
  color: var(--text-main);
  /* NO transparent gradient — ensures visibility */
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text-main);
}

h4 {
  font-size: 1.1rem;
  color: var(--text-main);
}

p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-style: normal;
}

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

ul {
  list-style: none;
}

/* Gold/branded word highlights */
.gold-word {
  color: var(--secondary) !important;
  font-style: italic;
  -webkit-text-fill-color: unset !important;
}

/* Label spans above sections */
span.text-\[var\(--primary\)\] {
  color: var(--primary) !important;
  font-weight: 700;
  letter-spacing: 0.3em;
}

/* ===== Utilities ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding);
  position: relative;
  z-index: 5;
}

.text-center {
  text-align: center;
}

.stack-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===== Glass / Card System ===== */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  padding: 2.5rem;
}

.glass-card {
  background: var(--bg-card);
  border: 1px solid rgba(61, 122, 58, 0.12);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(26, 35, 24, 0.07);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(61, 122, 58, 0.3);
  box-shadow: 0 16px 50px rgba(26, 35, 24, 0.12);
}

/* ===== Buttons ===== */
.glass-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  background: var(--primary);
  border: none;
  color: #fff;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 20px rgba(61, 122, 58, 0.35);
}

.glass-btn:hover {
  background: #2d5c2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(61, 122, 58, 0.5);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(61, 122, 58, 0.3);
}

/* Premium hero buttons */
.premium-btn {
  position: relative;
  padding: 15px 38px;
  background: var(--primary);
  border: 2px solid var(--primary);
  color: #FFFFFF;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  border-radius: 6px;
  overflow: hidden;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(61, 122, 58, 0.40);
}

.premium-btn:hover {
  transform: translateY(-3px);
  background: #2d5c2b;
  border-color: #2d5c2b;
  box-shadow: 0 12px 35px rgba(61, 122, 58, 0.45);
  color: #fff;
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  transition: 0.75s;
}

.premium-btn:hover .btn-glow {
  left: 150%;
}

.outline-premium-btn {
  padding: 15px 38px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  border-radius: 6px;
  transition: 0.35s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.outline-premium-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(61, 122, 58, 0.35);
}

.symbol-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  background: rgba(61, 122, 58, 0.08);
  transition: 0.35s;
}

.symbol-btn:hover {
  border-color: var(--primary);
  color: #fff;
  background: var(--primary);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(61, 122, 58, 0.4);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 760px;
  padding: 0.6rem 2rem 0.6rem 0.5rem;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(61, 122, 58, 0.18);
  border-radius: 100px;
  box-shadow: 0 4px 30px rgba(26, 35, 24, 0.08);
}

.navbar.scrolled {
  top: 0.8rem;
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(61, 122, 58, 0.25);
  box-shadow: 0 8px 40px rgba(26, 35, 24, 0.12);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--primary);
}

.logo img {
  height: clamp(32px, 4vw, 44px);
  width: auto;
  transform: scale(2.2);
  transform-origin: left center;
}

.logo-light { display: none; }
.logo-dark { display: block; }
.navbar.dark-mode:not(.scrolled) .logo-dark { display: none !important; }
.navbar.dark-mode:not(.scrolled) .logo-light { display: block !important; }

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
  position: relative;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: var(--primary);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a.active {
  color: var(--primary);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background-color: var(--text-main);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== Navbar Dark Mode — Luxury (index hero + inner pages) ===== */
.navbar.dark-mode {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.10);
  padding: 0.8rem 2rem 0.8rem 0.5rem;
}

.navbar.dark-mode .nav-links li a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar.dark-mode .nav-links li a::after {
  background: var(--accent);
  height: 1px;
  bottom: -6px;
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.navbar.dark-mode .nav-links li a:hover {
  color: var(--accent);
}

.navbar.dark-mode .hamburger span {
  background-color: #fff;
}

.navbar.dark-mode.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(61, 122, 58, 0.2);
  box-shadow: 0 8px 40px rgba(26, 35, 24, 0.12);
}

.navbar.dark-mode.scrolled .nav-links li a {
  color: var(--text-main);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.navbar.dark-mode.scrolled .nav-links li a:hover {
  color: var(--primary);
}

.navbar.dark-mode.scrolled .nav-links li a::after {
  background: var(--primary);
  height: 2px;
}

.navbar.dark-mode.scrolled .hamburger span {
  background-color: var(--text-main);
}

/* ===== Mobile Menu Open — Desktop override for dark-mode navbar ===== */
/* NOTE: Mobile uses a dark green panel — white text is set in the @media block below */
.nav-links.active li a {
  color: var(--text-main); /* No !important — mobile media query overrides this */
}

.nav-links.active li a:hover {
  color: var(--primary);
}

/* Hamburger icon: once active on dark-mode pages, keep white bars (X icon) */
.navbar.dark-mode .hamburger.active span {
  background-color: #ffffff !important;
}


/* ===== Page Header (Inner Pages) ===== */
.page-header {
  position: relative;
  padding-top: 150px;
  padding-bottom: 60px;
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover !important;
  background-position: center !important;
}

/* Dark overlay via pseudo-element — always readable regardless of image */
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 18, 10, 0.55) 0%, rgba(10, 18, 10, 0.75) 100%);
  z-index: 0;
}

.page-header>* {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: #ffffff !important;
  -webkit-text-fill-color: unset !important;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.5);
}

.page-header span {
  color: var(--primary-light) !important;
  -webkit-text-fill-color: unset !important;
}

.page-header h1 .gold-word {
  color: var(--accent) !important;
  -webkit-text-fill-color: unset !important;
}



/* ===== Cinematic Luxury Hero ===== */
.hero-cinematic {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Full-bleed background image */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: contrast(1.05) saturate(1.05) brightness(1.02);
  transform-origin: center center;
  animation: bgCinematicZoom 28s ease-in-out infinite alternate;
}

@keyframes bgCinematicZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

/* Multi-layer cinematic overlay — Clean left-side split */
.hero-cinematic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: 
    linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 45%, transparent 85%),
    linear-gradient(to bottom, rgba(0, 5, 0, 0.5) 0%, rgba(0, 5, 0, 0.15) 35%, rgba(0, 5, 0, 0.6) 100%);
}

/* Removed artificial blur for maximum sharpness */
.hero-vignette {
  display: none;
}

/* Warm golden glow — enhances the fairy light ambience */
.hero-warm-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 40% 35% at 50% 30%, rgba(212, 175, 55, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 25% 20% at 30% 25%, rgba(255, 200, 60, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 25% 20% at 70% 28%, rgba(255, 200, 60, 0.06) 0%, transparent 60%);
  animation: glowBreath 8s ease-in-out infinite alternate;
}

@keyframes glowBreath {
  0% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

/* Floating warm light particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 18% 25%, rgba(212, 175, 55, 0.55), transparent),
    radial-gradient(2px 2px at 42% 65%, rgba(212, 175, 55, 0.40), transparent),
    radial-gradient(1px 1px at 62% 18%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1.5px 1.5px at 78% 45%, rgba(212, 175, 55, 0.35), transparent),
    radial-gradient(1px 1px at 12% 75%, rgba(255, 255, 255, 0.18), transparent),
    radial-gradient(2px 2px at 68% 82%, rgba(212, 175, 55, 0.30), transparent),
    radial-gradient(1px 1px at 88% 12%, rgba(255, 255, 255, 0.15), transparent),
    radial-gradient(1.5px 1.5px at 33% 40%, rgba(212, 175, 55, 0.20), transparent);
  animation: particleDrift 15s ease-in-out infinite alternate;
}

@keyframes particleDrift {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.5;
  }

  50% {
    opacity: 0.9;
  }

  100% {
    transform: translateY(-12px) translateX(8px);
    opacity: 0.6;
  }
}

/* Film grain removed for cleanliness */
.hero-grain {
  display: none;
}

@keyframes grainShift {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-2%, -3%);
  }

  50% {
    transform: translate(3%, 1%);
  }

  75% {
    transform: translate(-1%, 4%);
  }

  100% {
    transform: translate(2%, -2%);
  }
}

/* ===== Hero Content Layout — Premium Left-Split ===== */
.hero-content-centered {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1280px; /* Expand to full structured width to pull text fully left */
  margin: 0 auto;
  padding-left: clamp(1.5rem, 6vw, 4rem);
  z-index: 10;
  position: relative;
  /* Push to optical center to avoid overlapping with navbar */
  margin-top: 4vh;
  padding-top: 0;
}

.hero-center-text {
  text-align: left;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ===== Hero Typography ===== */

/* Category label */
.hero-label {
  display: inline-block;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

/* Primary emotional headline */
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff !important;
  font-size: clamp(2.8rem, 5vw, 4rem); /* Reduce to prevent awkward unnatural wrapping */
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 0;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-headline-accent {
  color: var(--accent) !important;
  font-style: normal;
  font-weight: 700;
  -webkit-text-fill-color: unset !important;
}

/* Gold divider */
.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 1.75rem 0;
  opacity: 0.8;
}

@keyframes dividerPulse {

  0%,
  100% {
    width: 60px;
    opacity: 0.7;
  }

  50% {
    width: 90px;
    opacity: 1;
  }
}

/* Subtitle */
.hero-subtitle {
  color: rgba(255, 255, 255, 0.95) !important;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.7;
  max-width: 550px;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Brand mark */
.hero-brand-mark {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.50);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

/* ===== Hero CTA Buttons ===== */
.hero-cta-group {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

/* Primary — Reserve a Table */
.hero-btn-primary {
  position: relative;
  padding: 16px 44px;
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #FFFFFF;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(61, 122, 58, 0.3);
}

.hero-btn-primary:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 35px rgba(61, 122, 58, 0.65);
  background: #2d5c2b;
  border-color: #2d5c2b;
  color: #fff;
}

/* Secondary — View Menu (ghost outline) */
.hero-btn-outline {
  padding: 16px 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  border-radius: 50px;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px) scale(1.02);
}

/* Micro text */
.hero-micro-text {
  color: rgba(255, 255, 255, 0.30) !important;
  font-family: 'Playfair Display', serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Quick action icons */
.hero-quick-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-icon-btn:hover {
  border-color: rgba(212, 175, 55, 0.45);
  color: var(--accent);
  background: rgba(212, 175, 55, 0.08);
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

/* Scroll indicator for dark hero */
.hero-scroll .mouse {
  border-color: rgba(255, 255, 255, 0.20);
}

.hero-scroll .wheel {
  background: rgba(255, 255, 255, 0.50);
}

/* ===== Mobile Hero (≤ 1024px) ===== */
@media (max-width: 1024px) {
  .hero-content-centered {
    align-items: center;
    justify-content: center;
    padding-top: 0;
    margin-top: -3vh;
    padding-bottom: 0;
  }

  .hero-vignette {
    display: none;
  }

  .hero-cinematic-overlay {
    background: linear-gradient(to bottom, rgba(0, 5, 0, 0.7) 0%, rgba(0, 5, 0, 0.5) 25%, rgba(0, 5, 0, 0.5) 75%, rgba(0, 5, 0, 0.8) 100%);
  }

  .hero-center-text {
    text-align: left;
    max-width: 100%;
    align-items: flex-start;
  }

  .hero-headline {
    font-size: clamp(2.4rem, 8vw, 3.2rem) !important;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-left: 0;
    margin-right: 0;
    max-width: 320px;
    text-align: left;
  }

  .hero-divider {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 1rem;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-btn-primary,
  .hero-btn-outline {
    width: 100%;
  }

  .hero-quick-actions {
    justify-content: flex-start;
  }

  .hero-brand-mark {
    display: block;
    text-align: left;
  }

  .hero-micro-text {
    text-align: left;
  }
}


.light-rays {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(61, 122, 58, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(61, 122, 58, 0.5);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 3px;
  height: 7px;
  background: var(--primary);
  border-radius: 2px;
  animation: mouseScroll 1.8s infinite;
}

@keyframes mouseScroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* ===== Stable hero element defaults (GSAP override) ===== */
.hero-center-text>*,
.scroll-indicator {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Dishes / Menu Cards ===== */
.dish-card {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(26, 35, 24, 0.08);
  border: 1px solid rgba(61, 122, 58, 0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(61, 122, 58, 0.15);
}

.dish-card h3 {
  color: var(--text-main);
  font-size: 1.3rem;
}

.dish-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.dish-price {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.15rem;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  padding: 3rem 2rem;
  text-align: center;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
}

/* ===== Reviews ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.review-card {
  padding: 2.5rem;
}

.review-card p {
  color: var(--text-muted);
  font-style: italic;
}

.review-stars {
  color: #D4AF37;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.review-author {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(61, 122, 58, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
}

.author-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 0;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(61, 122, 58, 0.12);
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition);
  transform: translateY(20px);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay h4 {
  color: var(--text-main);
  margin: 0;
}

/* Gallery Carousel */
.gallery-carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.gallery-carousel {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.gallery-carousel:hover {
  cursor: grab;
}

.gallery-carousel:active {
  cursor: grabbing;
}

.gallery-card {
  width: 300px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(61, 122, 58, 0.12);
  flex-shrink: 0;
  will-change: transform;
  box-shadow: 0 8px 30px rgba(26, 35, 24, 0.08);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  pointer-events: none;
}

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

/* ===== Menu ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.menu-category h2 {
  border-bottom: 2px solid rgba(61, 122, 58, 0.25);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed rgba(61, 122, 58, 0.2);
}

.item-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}

.item-info p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

.item-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
  padding-left: 1rem;
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-icon {
  font-size: 1.3rem;
  color: var(--primary);
  background: rgba(61, 122, 58, 0.08);
  border: 2px solid rgba(61, 122, 58, 0.2);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-details h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

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

.map-container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(61, 122, 58, 0.15);
  box-shadow: var(--glass-shadow);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== Footer ===== */
footer {
  background-color: var(--bg-footer);
  padding: 5rem 0 2.5rem;
  border-top: 3px solid var(--primary);
  position: relative;
  z-index: 10;
  color: rgba(255, 255, 255, 0.8);
}

footer h4 {
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

footer p,
footer li,
footer a {
  color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  margin-bottom: 1rem;
  display: inline-block;
}

/* ===== Responsive — Full Mobile Optimization ===== */
@media (max-width: 768px) {

  /* ----- Navbar ----- */
  .navbar {
    width: calc(100% - 1rem);
    top: 0.6rem;
    padding: 0.65rem 1.25rem 0.65rem 0.4rem;
    border-radius: 60px;
  }

  .hamburger {
    display: block;
    position: relative;
    width: 28px;
    height: 18px;
    z-index: 1001;
  }

  .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: 0.4s ease;
    border-radius: 10px;
  }

  .hamburger span:nth-child(1) {
    top: 0;
  }

  .hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    width: 70%;
    right: 0;
    left: auto;
  }

  .hamburger span:nth-child(3) {
    bottom: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 8px;
  }

  /* ----- Mobile Floating Panel Navigation ----- */
  .nav-links {
    position: fixed;
    top: 5.5rem; /* Floating below navbar */
    right: 5%;
    width: 90%;
    height: auto;
    max-height: 80dvh;
    /* Light Natural Bamboo Green — matches brand identity */
    background: linear-gradient(145deg, #3a6e37 0%, #4a8042 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 3.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
    z-index: 1000;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    
    /* Entrance Animation */
    opacity: 0;
    transform: translateY(-20px) scale(0.96);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .nav-links.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  /* Full Screen Dimming Backdrop overlay — separate element, NOT inside .nav-links */
  /* This prevents the blur from affecting the menu panel itself */
  .nav-links::before {
    display: none; /* Disabled — replaced by .mobile-menu-backdrop element */
  }

  .mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999; /* Below .nav-links (1000) but above page content */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .mobile-menu-backdrop.active {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  /* Mobile panel has DARK GREEN background — links must be WHITE */
  .nav-links li a,
  .nav-links.active li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.3s ease;
  }

  .nav-links li a:hover,
  .nav-links.active li a:hover {
    color: var(--accent) !important;
  }

  /* Gold Underline for Active Item */
  .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.3s ease;
  }

  .nav-links li a.active,
  .nav-links.active li a.active {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  }

  .nav-links li a.active::after {
    width: 20px;
  }

  /* Close Button (X icon on Green panel) */
  .hamburger.active {
    z-index: 2000; /* Ensure this is in front of the blur and menu overlay */
  }

  .hamburger.active span {
    background-color: #fff !important;
    height: 1.5px;
  }

  /* Dark-mode navbar on mobile */
  .navbar.dark-mode .hamburger span {
    background-color: #fff;
  }

  /* ----- Global Section Spacing ----- */
  .section {
    padding: 3.5rem 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  /* ----- Hero Refinements (Full Cinematic Overlay) ----- */
  .hero-cinematic-overlay {
    /* Solid 50% black overlay everywhere + radial focus on center content */
    background: 
      radial-gradient(circle at center, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%),
      rgba(0, 0, 0, 0.5) !important;
  }

  .hero-bg-image {
    background-image: url('../images/mobile%20hero.png') !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .hero-cinematic {
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
  }

  .hero-content-centered {
    align-items: center;
    justify-content: center;
    padding: 6rem 0 2rem;
    height: 100%;
    width: 100%;
    display: flex;
  }

  .hero-center-text {
    text-align: center;
    width: 100%; 
    max-width: 100%;
    margin: 0;
    padding: 0 1.5rem;
    background: none !important;
    backdrop-filter: none !important;
    border: none !important;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 100%;
  }

  .hero-label {
    font-size: 0.6rem;
    margin: 0;
    opacity: 0.8;
  }

  .hero-headline {
    font-size: clamp(2.4rem, 10vw, 3.2rem) !important;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 8px 30px rgba(0,0,0,0.9);
    color: #fff;
    font-weight: 800;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin: 0.5rem 0 0;
    padding: 0 1rem;
    opacity: 1;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
    line-height: 1.65;
    max-width: 320px;
    font-weight: 500;
  }

  .hero-divider {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 0.5rem 0;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  }

  /* Increase visibility of buttons */
  .hero-cta-group {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    flex-direction: column;
    width: 100%;
    max-width: 290px;
    gap: 0.75rem;
    margin: 0.5rem 0;
  }

  .hero-btn-primary, .premium-btn {
    width: 100%;
    padding: 16px 24px;
    border-radius: 100px;
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(61, 122, 58, 0.2);
    font-size: 0.8rem;
    font-weight: 700;
  }

  .hero-btn-outline, .outline-premium-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 0.8rem;
    border-radius: 100px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 700;
  }

  .hero-quick-actions {
    justify-content: center;
    gap: 1rem;
    margin: 0.5rem 0 0;
    border-top: none;
    padding: 0;
    width: 100%;
  }

  .hero-icon-btn {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 50% !important;
    font-size: 1rem;
    box-shadow: none;
  }

  .hero-brand-mark {
    display: none; /* Hide secondary brand mark to save vertical space if needed, or keep compact */
  }

  /* Scroll indicator — hide on mobile (clutters layout) */
  .scroll-indicator {
    display: none;
  }

  /* ----- Stats Section ----- */
  .stats-section .grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .stats-section .p-8 {
    padding: 1.25rem 0.75rem;
  }

  .stats-section span.text-4xl {
    font-size: 1.8rem !important;
  }

  .stats-section span.text-xs {
    font-size: 0.65rem !important;
  }

  /* ----- Glass Panel (About Preview etc.) ----- */
  .glass-panel {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }

  .glass-panel .flex-col.md\:flex-row {
    flex-direction: column !important;
  }

  /* ----- Services / USP Cards ----- */
  .glass-card {
    padding: 1.5rem 1rem;
  }

  .feature-card {
    padding: 2rem 1rem;
  }

  /* ----- Experience Stack ----- */
  .experience-card {
    height: 55vw;
    min-height: 220px;
    border-radius: 20px;
    top: 10vh;
  }

  .exp-content {
    padding: 20px;
  }

  .exp-content h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
  }

  .exp-content p {
    font-size: 0.8rem;
  }

  /* ----- Gallery Carousel ----- */
  .gallery-card {
    width: 220px;
    height: 280px;
  }

  .gallery-carousel-wrapper {
    padding: 0;
  }

  /* ----- Reviews ----- */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .review-card {
    padding: 1.5rem;
  }

  /* ----- Quick Action Strip ----- */
  .glass-panel.flex {
    flex-direction: column !important;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  /* ----- Contact Page ----- */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-container {
    height: 280px;
    border-radius: 14px;
  }

  .contact-info-list li {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .contact-icon {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  /* ----- Menu Page ----- */
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* ----- Page Header (About/Contact) ----- */
  .page-header {
    min-height: 40vh;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .page-header h1 {
    font-size: clamp(1.7rem, 7vw, 2.5rem);
  }

  /* ----- Footer ----- */
  footer {
    padding: 3rem 0 5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-grid .social-links {
    justify-content: center;
  }

  .footer-bottom {
    padding: 1.5rem 1rem;
    font-size: 0.75rem;
  }

  /* ----- Floating Buttons — shift left so they don't cover content ----- */
  .floating-contact-cluster {
    bottom: 1.2rem;
    right: 1rem;
    gap: 10px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }

  /* ----- Typography scale ----- */
  h2 {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
    margin-bottom: 1rem;
  }

  h3 {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  p {
    font-size: 0.95rem;
  }

  /* ----- Headings in sections ----- */
  .text-center h2 {
    font-size: clamp(1.5rem, 6.5vw, 2.2rem);
  }
}

/* Extra small phones */
@media (max-width: 400px) {
  .hero-headline {
    font-size: 1.9rem !important;
  }

  .stats-section span.text-4xl {
    font-size: 1.5rem !important;
  }

  .float-btn {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .floating-contact-cluster {
    right: 0.6rem;
    bottom: 1rem;
  }
}


/* ===== Experience Stacking ===== */
.stack-experience {
  background: transparent;
  padding-bottom: 20vh;
}

.experience-stack-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.experience-card {
  position: sticky;
  top: 15vh;
  height: 70vh;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 10vh;
  box-shadow: 0 20px 60px rgba(26, 35, 24, 0.12);
  border: 1px solid rgba(61, 122, 58, 0.15);
  background: #fff;

  /* GPU layer promotion — prevents pixel shutter on scroll */
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  /* Smooth transition for scale/opacity changes */
  transition: none;
  /* Let GSAP handle transitions, not CSS */
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Prevent sub-pixel rendering jitter on image during scroll */
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 1.5s ease;
}

.experience-card:hover img {
  transform: translateZ(0) scale(1.05);
}

.exp-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(26, 35, 24, 0.95) 75%);
  padding: 60px 50px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.exp-content h3 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 15px;
  color: #fff;
  line-height: 1.1;
}

.exp-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  line-height: 1.6;
}

/* Z-indexing for the stack */
#exp-1 {
  z-index: 10;
}

#exp-2 {
  z-index: 15;
}

#exp-3 {
  z-index: 20;
}

#exp-4 {
  z-index: 25;
}

#exp-5 {
  z-index: 30;
}

/* ===== Reveal animation defaults ===== */
.reveal {
  opacity: 1;
  transform: none;
}

/* ===== Critical Light-Mode Overrides ===== */
/* Section label badges */
section span[class*="tracking-"] {
  font-style: normal;
}

/* h3 cards — prevent --text-light (now dark) being overridden by Tailwind */
.glass-card h3,
.glass-panel h3 {
  color: var(--text-main) !important;
}

/* Parallax dark overlay section — keep white text */
.stats-section .text-\[var\(--text-muted\)\] {
  color: #1A2318 !important;
}

/* Food dish card text */
.dish-card .text-\[var\(--text-light\)\],
.glass-card .text-\[var\(--text-light\)\] {
  color: var(--text-main) !important;
}

/* Ensure review card names are dark */
.review-card h4 {
  color: var(--text-main) !important;
}

/* Section divider rule colour */
.w-16.h-0\.5 {
  opacity: 0.8;
}

/* ===== Floating Contact Buttons (Bottom-Right) ===== */
.floating-contact-cluster {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  flex-shrink: 0;
}

/* WhatsApp — brand green */
.float-btn.whatsapp {
  background: #25D366;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  animation: waPulse 2.5s ease-in-out infinite;
}

.float-btn.whatsapp:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.60);
  color: #fff;
}

/* Call — bamboo green */
.float-btn.call {
  background: var(--primary);
  box-shadow: 0 6px 24px rgba(61, 122, 58, 0.40);
}

.float-btn.call:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 35px rgba(61, 122, 58, 0.55);
  color: #fff;
}

/* Gentle pulse on WhatsApp to draw attention */
@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }

  50% {
}
}

/* --- Menu Page Styles --- */
/* --- Menu Page Styles (Enhanced) --- */
.menu-main {
    padding-top: 5rem;
    padding-bottom: 8rem;
}

/* Custom Dropdown Filter */
.category-filter-container {
    max-width: 400px;
    margin: 0 auto 5rem;
    position: sticky;
    top: 7rem;
    z-index: 100;
}

.custom-dropdown {
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.dropdown-trigger {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.dropdown-trigger:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(61, 122, 58, 0.1);
}

.dropdown-options {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 10;
    max-height: 400px;
    overflow-y: auto;
}

.custom-dropdown.open .dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-options li {
    padding: 14px 24px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.dropdown-options li:hover {
    background: var(--primary-pale);
    color: var(--primary);
    padding-left: 30px;
}

.dropdown-options li.active {
    background: var(--primary);
    color: #fff;
}

/* Premium Menu Grid & Items */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
}

.menu-item {
    background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
    border-radius: 24px;
    padding: 2.8rem 2.2rem;
    border: 1px solid rgba(61, 122, 58, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

/* Luxury Decorative Element */
.menu-item::after {
    content: '竹'; /* Bamboo char in Chinese/Japanese for organic vibe */
    position: absolute;
    bottom: -15px;
    right: -10px;
    font-size: 5rem;
    font-family: serif;
    opacity: 0.03;
    color: var(--primary);
    transform: rotate(-15deg);
    transition: var(--transition);
    pointer-events: none;
}

.menu-item:hover::after {
    opacity: 0.08;
    transform: rotate(0deg) scale(1.1);
}

/* Left Accent Line */
.menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 40px;
    background: var(--primary);
    border-radius: 0 4px 4px 0;
    opacity: 0.2;
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(26, 35, 24, 0.1);
    border-color: var(--primary-light);
}

.menu-item:hover::before {
    opacity: 1;
    height: 70%;
}

.menu-item .item-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.menu-item .item-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    opacity: 0.7;
}

/* Category Tag in Item */
.menu-item .category-tag {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    font-weight: 800;
    opacity: 0.3;
}

.menu-item.hidden {
    display: none;
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .category-filter-container {
        top: 5.5rem;
        margin-bottom: 3rem;
    }
    .menu-item {
        padding: 2rem;
    }
}
