/* --- 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: 'Montserrat', sans-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: 'Montserrat', sans-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: 'Montserrat', sans-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.8rem 2rem;
  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, 5vw, 42px); width: auto; }

.nav-links { display: flex; gap: 2rem; }
.nav-links li a {
  font-weight: 600; 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 (inner pages with dark hero) ===== */
.navbar.dark-mode {
  background: rgba(26, 35, 24, 0.55);
  border-color: rgba(107, 163, 104, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}
.navbar.dark-mode .nav-links li a {
  color: rgba(255, 255, 255, 0.90);
}
.navbar.dark-mode .nav-links li a:hover {
  color: #ffffff;
}
.navbar.dark-mode .nav-links li a::after {
  background: #fff;
}
.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); }
.navbar.dark-mode.scrolled .nav-links li a { color: var(--text-main); }
.navbar.dark-mode.scrolled .nav-links li a:hover { color: var(--primary); }
.navbar.dark-mode.scrolled .nav-links li a::after { background: var(--primary); }
.navbar.dark-mode.scrolled .hamburger span { background-color: var(--text-main); }

/* ===== Mobile Menu Open — Override dark-mode white links ===== */
/* When the hamburger menu is open, background is always white, so links MUST be dark */
.nav-links.active li a {
  color: var(--text-main) !important;
}
.nav-links.active li a:hover {
  color: var(--primary) !important;
}
/* Hamburger icon: once active on dark-mode pages, switch to dark bars */
.navbar.dark-mode .hamburger.active span {
  background-color: var(--text-main) !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;
}


/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
  background: radial-gradient(ellipse at 25% 50%, #ffffff 0%, #EDE8DE 100%);
}
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: transparent; z-index: 2;
}

/* ===== Hero Grid Layout ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  z-index: 10;
  position: relative;
}

/* Desktop: hide mobile image block */
.hero-mobile-image { display: none; }

.hero-text-side h1 {
  color: var(--text-main) !important;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1.15;
  font-style: normal;
  -webkit-text-fill-color: unset !important;
}

.hero-text-side > * { font-style: normal !important; }
.hero-text-side p { color: var(--text-muted); font-size: 1.05rem; }

@keyframes floatHero {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.hero-visual-side {
  position: relative;
  display: flex; justify-content: flex-end; align-items: flex-end;
  z-index: 3;
}

.hero-composition {
  max-width: 600px; width: 110%; height: auto;
  filter: drop-shadow(0 25px 60px rgba(26, 35, 24, 0.20));
  animation: floatHero 8s ease-in-out infinite;
  transform-origin: center;
  position: relative; right: -10%; bottom: -5vh;
}

/* ===== Mobile Hero (≤ 1024px) ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: flex-start;
    min-height: 100vh;
    padding-bottom: 3rem;
  }

  /* Hide the desktop right-column image on mobile */
  .hero-visual-side { display: none; }

  /* Show the mobile image block (between para and buttons) */
  .hero-mobile-image {
    display: block;
    width: 100%;
    margin: 1rem 0 1.5rem;
    text-align: center;
  }

  .hero-composition-mobile {
    width: 85%;
    max-width: 380px;
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 18px 40px rgba(26, 35, 24, 0.18));
    animation: floatHero 8s ease-in-out infinite;
  }

  .hero-text-side h1 { font-size: clamp(2.8rem, 10vw, 4rem); }
}


.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: 24px; height: 40px;
  border: 2px solid rgba(61, 122, 58, 0.5);
  border-radius: 20px; display: flex; justify-content: center; padding-top: 8px;
}
.wheel { width: 4px; height: 8px; background: var(--primary); border-radius: 2px; animation: mouseScroll 1.6s infinite; }
@keyframes mouseScroll {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(15px); }
}

/* ===== Stable hero element defaults (GSAP override) ===== */
.hero-text-side > *, .hero-visual-side, .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: 'Montserrat', sans-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: 'Montserrat', sans-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: 'Montserrat', sans-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: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  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.8rem;
}
.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;
    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; }

  .nav-links {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: rgba(255, 255, 255, 0.99); backdrop-filter: blur(30px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2rem; transition: 0.45s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1000;
  }
  .nav-links.active { right: 0; }
  .nav-links li a {
    font-size: 1.3rem; color: var(--text-main);
    font-weight: 700; letter-spacing: 0.05em;
  }

  /* 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 ----- */
  .hero-grid {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding-top: 5rem;
    padding-bottom: 2rem;
    min-height: 100dvh;
    gap: 0;
  }
  .hero-text-side { padding: 0 0.25rem; }
  .hero-text-side h1 {
    font-size: clamp(3rem, 12vw, 4.5rem);
    margin-bottom: 0.75rem;
    line-height: 1.1;
  }
  .hero-text-side p { font-size: 0.95rem; margin-bottom: 1rem; }

  /* Mobile image in hero */
  .hero-mobile-image { margin: 0.5rem 0 1rem; }
  .hero-composition-mobile {
    width: 88%; max-width: 340px;
    filter: drop-shadow(0 14px 30px rgba(26, 35, 24, 0.18));
  }

  /* Main buttons on mobile — full width */
  .premium-btn, .outline-premium-btn {
    width: 100%; justify-content: center;
    padding: 14px 24px; font-size: 0.8rem;
  }

  /* 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-text-side h1 { font-size: 2.6rem; }
  .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.88) 80%);
  padding: 40px;
}
.exp-content h3 { font-size: 2rem; margin-bottom: 10px; color: #fff; }
.exp-content p { font-size: 1rem; color: rgba(255, 255, 255, 0.85); max-width: 500px; }

/* Z-indexing for the stack */
#exp-1 { z-index: 10; }
#exp-2 { z-index: 20; }
#exp-3 { z-index: 30; }
#exp-4 { z-index: 40; }

/* ===== 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% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.70), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}


