/* ======================================================
   SKY FACE CAFE & RESTAURANT â€” PREMIUM LANDING PAGE CSS
   Theme: Emerald & Champagne Gold | Deep Forest + Warm Gold
   PERFORMANCE: Only animate transform + opacity (GPU composited)
   ====================================================== */

/* ============ CSS CUSTOM PROPERTIES ============ */
:root {
  --bg-primary: #0b1a14;
  --bg-secondary: #11241c;

  --gold-primary: #e5c158;
  --gold-light:   #f4db8d;
  --gold-dark:    #b28e2b;
  --gold-glow:        rgba(229, 193, 88, 0.22);
  --gold-glow-strong: rgba(229, 193, 88, 0.45);

  --neon-blue:  #00ffd5;
  --neon-green: #2ecc71;

  --text-primary:   #e3ede9;
  --text-secondary: #8fa89e;
  --text-muted:     #567367;

  /* Glass â€” NO backdrop-filter on cards; only on navbar */
  --glass-bg:     rgba(11, 36, 28, 0.65);
  --glass-border: rgba(229, 193, 88, 0.12);

  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.7);

  --section-pad: clamp(80px, 8vw, 120px);
  --container-max: 1280px;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --transition-fast: 0.18s ease;
  --transition-base: 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-slow: 0.55s ease;

  --font-body:    'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-heading: 'Outfit', sans-serif;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: var(--radius-pill); }

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ============ GLASS Ã¢â‚¬â€ ONLY USE ON NAV & KEY MODALS ============
   On cards, use solid semi-transparent background instead.
   backdrop-filter on 20+ elements simultaneously = lag.      */
.glass-panel {
  background: rgba(17, 36, 28, 0.90);
  border: 1px solid var(--glass-border);
}

/* Navbar gets real blur â€” it's a single element */
.navbar {
  background: rgba(11, 26, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.glow-gold {
  text-shadow: 0 0 28px rgba(229, 193, 88, 0.4);
}

.gold { color: var(--gold-primary); }

/* ============ KEYFRAMES Ã¢â‚¬â€ ONLY transform & opacity ============ */

/* Anti-Gravity Float Ã¢â‚¬â€ GPU composited Ã¢Å“â€œ */
@keyframes floatY {
  0%, 100% { transform: translateY(0px)  translateZ(0); }
  50%       { transform: translateY(-12px) translateZ(0); }
}

/* Gentle float for hero badges */
@keyframes floatSoft {
  0%, 100% { transform: translateY(0px)  translateZ(0); }
  50%       { transform: translateY(-8px)  translateZ(0); }
}

/* Scroll arrow bounce */
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 1; }
  50%       { transform: rotate(45deg) translate(4px, 4px); opacity: 0.45; }
}

/* Pulse dot Ã¢â‚¬â€ opacity only Ã¢Å“â€œ */
@keyframes pulseDot {
  0%, 100% { opacity: 1;   transform: scale(1)   translateZ(0); }
  50%       { opacity: 0.6; transform: scale(1.2) translateZ(0); }
}

/* Orb drift Ã¢â‚¬â€ transform only Ã¢Å“â€œ */
@keyframes orbDrift {
  0%    { transform: translate(0,    0)    translateZ(0); }
  33%   { transform: translate(25px, -35px) translateZ(0); }
  66%   { transform: translate(-18px, 18px) translateZ(0); }
  100%  { transform: translate(0,    0)    translateZ(0); }
}

/* Fade-slide-up for tab panels */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(14px) translateZ(0); }
  to   { opacity: 1; transform: translateY(0)    translateZ(0); }
}

/* Gold glow pseudo-element pulse Ã¢â‚¬â€ opacity only Ã¢Å“â€œ */
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1;   }
}

/* ============ FLOAT ANIMATION ============ */
.float-anim {
  will-change: transform;
  animation: floatY 5s ease-in-out infinite;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* Shimmer sweep Ã¢â‚¬â€ transform only Ã¢Å“â€œ */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-110%) skewX(-20deg) translateZ(0);
  transition: transform 0.38s ease;
  pointer-events: none;
}
.btn:hover::before { transform: translateX(110%) skewX(-20deg) translateZ(0); }

/* Champagne Button */
.btn-gold {
  background: linear-gradient(135deg, #b28e2b 0%, #e5c158 50%, #f4db8d 100%);
  color: #0b1a14;
  font-weight: 700;
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #e5c158, #f4db8d);
  opacity: 0;
  filter: blur(10px);
  z-index: -1;
  animation: glowPulse 2.5s ease-in-out infinite;
  pointer-events: none;
}

.btn-gold:hover { transform: translateY(-3px) scale(1.02) translateZ(0); }

/* WhatsApp Button */
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1da851);
  color: #fff;
  font-weight: 700;
}
.btn-whatsapp:hover { transform: translateY(-3px) scale(1.02) translateZ(0); }

/* Ghost Button */
.btn-ghost {
  background: rgba(17, 36, 28, 0.4);
  border: 1px solid rgba(229, 193, 88, 0.2);
  color: var(--text-primary);
}
.btn-ghost:hover {
  background: rgba(229, 193, 88, 0.08);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px) translateZ(0);
}

/* Outline Button */
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--glass-border);
  color: var(--text-primary);
}
.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px) translateZ(0);
}

/* Maps Button */
.btn-maps {
  background: linear-gradient(135deg, #1a73e8, #0a2c1f);
  color: #fff;
  font-weight: 700;
}
.btn-maps:hover { transform: translateY(-2px) translateZ(0); }

/* ============ SECTION HEADERS ============ */
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 70px);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
}
.section-eyebrow::before,
.section-eyebrow::after { content: ' \2014 '; opacity: 0.5; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold-primary); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ============ NAVBAR ============ */
#siteHeader {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px clamp(20px, 5vw, 60px);
  will-change: auto;
}

/* .navbar already has backdrop-filter defined above */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 175, 55, 0.12);
  transition: background var(--transition-slow), border-color var(--transition-slow);
}

#siteHeader.scrolled .navbar {
  background: rgba(12, 12, 12, 0.92);
  border-color: rgba(212, 175, 55, 0.22);
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #0b1a14; flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-size: 0.95rem; font-weight: 900; letter-spacing: 2px; color: var(--gold-primary); }
.logo-sub  { font-size: 0.6rem; font-weight: 400; letter-spacing: 1px; color: var(--text-secondary); margin-top: 2px; }

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-link {
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 50%;
  transform: translateX(-50%) translateZ(0);
  width: 0; height: 2px;
  background: var(--gold-primary);
  border-radius: var(--radius-pill);
  transition: width var(--transition-fast);
}
.nav-link:hover, .nav-link.active { color: var(--gold-primary); }
.nav-link:hover::after, .nav-link.active::after { width: 55%; }

.nav-cta { padding: 10px 22px; font-size: 0.88rem; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO SECTION ============ */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 60px;
  /* contain layout to avoid full-page repaints */
  contain: layout style;
}

/* Stars Ã¢â‚¬â€ static dots, no animation (removed scale twinkle) */
.star-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  will-change: auto;
}

.stars {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(229,193,88,0.6) 1px, transparent 1px);
}
.stars-sm  { background-size: 80px  80px;  opacity: 0.25; }
.stars-md  { background-size: 150px 150px; opacity: 0.15; background-position: 40px 40px; }
.stars-lg  { background-size: 220px 220px; opacity: 0.10; background-position: 80px 80px; }

/* Hero BG */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 26, 20,0.96) 0%,
    rgba(11, 26, 20,0.68) 50%,
    rgba(11, 26, 20,0.92) 100%
  );
}

/* Ambient Orbs Ã¢â‚¬â€ transform + opacity only */
.ambient-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px);
  z-index: 0; pointer-events: none;
  will-change: transform;
  animation: orbDrift 14s ease-in-out infinite;
}
.orb-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(229, 193, 88, 0.14), transparent 70%);
  top: -80px; right: 8%;
  animation-duration: 12s;
}
.orb-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(229,193,88,0.07), transparent 70%);
  bottom: 8%; left: 4%;
  animation-duration: 16s; animation-delay: 4s;
}
.orb-3 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(168,85,247,0.07), transparent 70%);
  top: 45%; left: 42%;
  animation-duration: 20s; animation-delay: 8s;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.hero-text-col { display: flex; flex-direction: column; gap: 22px; }

/* Badges */
.location-pill, .veg-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 600; width: fit-content;
  will-change: transform;
}

.location-pill {
  background: rgba(28,28,30,0.85);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
}
.location-pill i { color: var(--gold-primary); }

.veg-badge {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.28);
  color: var(--neon-green);
}

.veg-dot {
  width: 10px; height: 10px;
  background: var(--neon-green);
  border-radius: 50%;
  will-change: transform, opacity;
  animation: pulseDot 2.5s ease-in-out infinite;
}

/* Hero Headline */
.hero-headline { display: flex; flex-direction: column; gap: 4px; }

.headline-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800; line-height: 1;
  color: var(--gold-primary);
  text-shadow: 0 0 30px rgba(212,175,55,0.35);
}
.headline-amp {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300; color: var(--text-secondary); font-style: italic;
}
.headline-sub {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--text-primary);
}
.headline-tagline {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-style: italic; color: var(--text-secondary);
  font-weight: 400; margin-top: 8px; line-height: 1.5;
}

.hero-subheadline {
  font-size: clamp(0.88rem, 1.5vw, 1.05rem);
  color: var(--text-secondary); line-height: 1.7; max-width: 520px;
}

/* Hero CTAs */
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Stats */
.hero-stats-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }

.stat-chip {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  min-width: 80px; text-align: center;
  background: rgba(28,28,30,0.85);
  border: 1px solid var(--glass-border);
}
.stat-val { font-size: 1.1rem; font-weight: 700; color: var(--gold-primary); }
.stat-val i { color: var(--gold-primary); }
.stat-lbl { font-size: 0.63rem; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* Hero Visual Column */
.hero-visual-col { position: relative; height: 500px; }
.hero-card-stack { position: relative; width: 100%; height: 100%; }

/* Main card */
.hero-main-card {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  width: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(229, 193, 88, 0.15);
  border-color: rgba(229, 193, 88, 0.20);
  will-change: transform;
  animation: floatY 6s ease-in-out infinite;
}

/* Override float-anim on this specific element to keep translate-center */
.hero-main-card.float-anim {
  animation-name: floatCardCenter;
}
@keyframes floatCardCenter {
  0%, 100% { transform: translate(-50%, -50%) translateY(0)   translateZ(0); }
  50%       { transform: translate(-50%, -50%) translateY(-12px) translateZ(0); }
}

.hero-card-img { position: relative; height: 200px; overflow: hidden; }
.hero-card-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,18,18,0.8), transparent 60%);
}
.hero-card-info { padding: 16px; font-size: 0.8rem; color: var(--gold-primary); font-weight: 600; }

/* Float badges */
.float-badge {
  position: absolute; display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: var(--radius-lg);
  font-size: 0.78rem; font-weight: 600;
  box-shadow: var(--shadow-md); white-space: nowrap;
  background: rgba(28,28,30,0.9);
  will-change: transform;
}

.badge-open {
  top: 8%; left: 0;
  border-color: rgba(34,197,94,0.3);
  background: rgba(22,60,35,0.85);
  color: var(--neon-green);
  animation: floatSoft 5s 0.5s ease-in-out infinite;
}
.badge-party {
  bottom: 25%; right: -5%;
  border-color: rgba(229, 193, 88, 0.30);
  flex-direction: column; align-items: flex-start; gap: 4px;
  animation: floatSoft 5s 1s ease-in-out infinite;
}
.badge-title { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); }
.badge-sub   { font-size: 0.7rem; color: var(--text-secondary); }

.badge-veg {
  top: 30%; right: 0;
  border-color: rgba(34,197,94,0.3);
  background: rgba(22,60,35,0.85);
  color: var(--neon-green); font-size: 0.72rem; padding: 8px 14px;
  animation: floatSoft 5s 1.5s ease-in-out infinite;
}

/* Veg square */
.veg-square {
  width: 14px; height: 14px;
  border: 2px solid var(--neon-green);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.veg-square.sm { width: 12px; height: 12px; }
.veg-inner { width: 6px; height: 6px; background: var(--neon-green); border-radius: 50%; }
.veg-square.sm .veg-inner { width: 5px; height: 5px; }

/* Pulse dot */
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--neon-green); border-radius: 50%; flex-shrink: 0;
  will-change: transform, opacity;
  animation: pulseDot 2.5s ease-in-out infinite;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 2;
}
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid var(--gold-primary);
  border-bottom: 2px solid var(--gold-primary);
  transform: rotate(45deg) translateZ(0);
  will-change: transform, opacity;
  animation: scrollBounce 1.6s ease-in-out infinite;
  opacity: 0.65;
}

/* ============ FEATURES SECTION ============ */
.features-section {
  padding: var(--section-pad) 0;
  position: relative;
  contain: layout style;
}
.features-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0.25;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 22px; align-items: start;
}

/* Feature Card Ã¢â‚¬â€ solid bg, NO backdrop-filter */
.feature-card {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(17,36,28,0.95);
  border: 1px solid rgba(212,175,55,0.1);
  /* Lift via transform only */
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  will-change: transform;
}
.feature-card:hover {
  transform: translateY(-8px) translateZ(0);
  border-color: rgba(212,175,55,0.25);
}
.feature-card--center {
  margin-top: -24px;
  border-color: rgba(212,175,55,0.22);
  background: rgba(30,26,14,0.95);
}

/* Icon */
.feat-icon-wrap { position: relative; display: inline-block; margin-bottom: 20px; }
.feat-icon {
  width: 58px; height: 58px;
  background: rgba(229,193,88,0.1);
  border: 1px solid rgba(229, 193, 88, 0.20);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--gold-primary);
  transition: background var(--transition-fast);
}
.feat-icon--gold {
  background: linear-gradient(135deg, rgba(229, 193, 88, 0.20), rgba(229, 193, 88, 0.06));
  border-color: rgba(212,175,55,0.4);
}
.feature-card:hover .feat-icon { background: rgba(229, 193, 88, 0.18); }

.feat-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1px; color: var(--text-muted);
  text-transform: uppercase; margin-bottom: 12px;
}
.feat-badge--gold { color: var(--gold-primary); }

.feat-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 700; color: var(--text-primary);
  line-height: 1.2; margin-bottom: 14px;
}

.feat-desc {
  font-size: 0.9rem; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 20px;
}

.feat-highlights { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.feat-highlights li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--text-secondary);
}
.feat-highlights li i { color: var(--neon-green); font-size: 0.75rem; flex-shrink: 0; }

/* Subtle gold corner glow Ã¢â‚¬â€ static, no animation */
.feat-card-glow {
  position: absolute; bottom: -50px; right: -50px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(212,175,55,0.07), transparent 70%);
  border-radius: 50%; pointer-events: none;
}

/* ============ MENU SECTION ============ */
.menu-section {
  padding: var(--section-pad) 0;
  contain: layout style;
}

/* Tab Nav Ã¢â‚¬â€ solid bg, NO backdrop-filter */
.menu-tabs-wrapper {
  display: flex; gap: 6px; padding: 8px;
  border-radius: var(--radius-xl); margin-bottom: 40px;
  background: rgba(17,36,28,0.95);
  border: 1px solid rgba(229, 193, 88, 0.13);
  overflow-x: auto;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-tabs-wrapper::-webkit-scrollbar { display: none; }

.menu-tab {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px 16px; border-radius: var(--radius-lg);
  background: transparent; border: none; white-space: nowrap;
  color: var(--text-secondary);
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  cursor: pointer;
  transition: color var(--transition-fast), background var(--transition-fast);
}
.menu-tab:hover { color: var(--gold-primary); background: rgba(229, 193, 88, 0.06); }
.menu-tab.active {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: #0b1a14; font-weight: 700;
}

/* Sub-category label inside menu panels */
.menu-cat-label {
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-primary);
  border-left: 3px solid var(--gold-primary);
  padding-left: 10px;
  margin-bottom: 18px;
  opacity: 0.85;
}

/* Panels */
.menu-panels-container { min-height: 300px; }
.menu-panel { display: none; animation: fadeSlideUp 0.38s ease forwards; }
.menu-panel.active { display: block; }

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Menu Card Ã¢â‚¬â€ solid bg, no backdrop-filter */
.menu-card {
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  background: rgba(17,36,28,0.95);
  border: 1px solid rgba(229, 193, 88, 0.08);
  position: relative; overflow: hidden;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  will-change: transform;
}
.menu-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.menu-card:hover {
  transform: translateY(-5px) translateZ(0);
  border-color: rgba(229, 193, 88, 0.20);
}
.menu-card:hover::after { opacity: 1; }

.menu-card-header { display: flex; align-items: center; justify-content: space-between; }

.menu-icon-circle {
  width: 46px; height: 46px;
  background: rgba(229,193,88,0.1);
  border: 1px solid rgba(229, 193, 88, 0.20);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: var(--gold-primary);
  transition: transform var(--transition-fast);
}
.menu-icon-circle--gold {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border: none; color: #0b1a14;
}
.menu-icon-circle--neon {
  background: rgba(229, 193, 88, 0.08);
  border-color: rgba(229,193,88,0.28); color: var(--neon-blue);
}
.menu-card:hover .menu-icon-circle { transform: scale(1.1) translateZ(0); }

.menu-best-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gold-primary);
  background: rgba(229,193,88,0.1);
  border: 1px solid rgba(212,175,55,0.22);
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.menu-best-tag--neon {
  color: var(--neon-blue); background: rgba(229, 193, 88, 0.08);
  border-color: rgba(229, 193, 88, 0.22);
}

.veg-indicator { display: flex; align-items: center; }

.menu-item-name { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); line-height: 1.2; }
.menu-item-desc  { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; flex: 1; }

.menu-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.07);
}

.menu-price { font-size: 0.95rem; color: var(--text-secondary); }
.menu-price strong { font-size: 1.3rem; font-weight: 700; color: var(--gold-primary); }

.btn-order {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #25d366, #1da851);
  color: #fff; font-size: 0.78rem; font-weight: 700;
  border-radius: var(--radius-pill);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  white-space: nowrap; will-change: transform;
}
.btn-order:hover { transform: scale(1.05) translateZ(0); }

/* Full menu CTA */
.menu-full-cta {
  text-align: center; margin-top: 56px; padding: 40px;
  background: rgba(17,36,28,0.95);
  border: 1px solid rgba(229, 193, 88, 0.14);
  border-radius: var(--radius-xl);
}
.menu-full-cta p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 20px; }

/* ============ PHOTO GALLERY ============ */
.gallery-section {
  padding: var(--section-pad) 0;
  contain: layout style;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 48px;
}

/* First item spans 2 rows (tall) */
.gallery-item--tall {
  grid-row: span 2;
}
/* Last item spans 2 columns (wide) */
.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  cursor: pointer;
  border: 1px solid rgba(229, 193, 88, 0.10);
  background: #07120e;
  min-height: 220px;
  will-change: transform;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s;
}
.gallery-item:hover {
  transform: scale(1.025) translateZ(0);
  box-shadow: 0 8px 40px rgba(229, 193, 88, 0.18);
  border-color: rgba(229, 193, 88, 0.30);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.07) translateZ(0);
}

/* Caption overlay Ã¢â‚¬â€ slides up on hover */
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7, 18, 14,0.88) 0%, rgba(7, 18, 14,0.2) 55%, transparent 100%);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 20px 22px;
  transform: translateY(30%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}
.gallery-overlay i { font-size: 1.1rem; margin-bottom: 6px; }
.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700;
  color: #fff; line-height: 1.2;
}
.gallery-overlay small {
  font-size: 0.78rem; color: var(--gold-primary);
  margin-top: 4px; font-weight: 600;
}

/* Gallery CTA */
.gallery-cta {
  text-align: center; padding: 36px 20px;
  background: rgba(229, 193, 88, 0.04);
  border: 1px solid rgba(229, 193, 88, 0.10);
  border-radius: var(--radius-xl);
}
.gallery-cta p {
  font-size: 1.05rem; color: var(--text-secondary);
  margin-bottom: 20px;
}
.gallery-cta strong { color: var(--text-primary); }

/* ============ PARTY SECTION ============ */
.party-section {
  padding: var(--section-pad) 0;
  contain: layout style;
}

.party-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.party-desc { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; }

.party-features-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.party-feat-item { display: flex; align-items: flex-start; gap: 16px; }
.party-feat-icon {
  width: 46px; height: 46px;
  background: rgba(229,193,88,0.1); border: 1px solid rgba(229, 193, 88, 0.20);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold-primary); flex-shrink: 0;
}
.party-feat-item strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.party-feat-item p { font-size: 0.82rem; color: var(--text-secondary); }

/* Party visual */
.party-cards-col { position: relative; height: 420px; }
.party-visual-stack { position: relative; width: 100%; height: 100%; }

.party-card {
  position: absolute;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; border-radius: var(--radius-xl);
  padding: 28px 24px;
  font-size: 0.88rem; font-weight: 700;
  color: var(--text-primary); text-align: center;
  background: rgba(17,36,28,0.95);
  will-change: transform;
}
.party-card i { font-size: 2rem; }
.party-card-1 { top: 0;   left: 10%; width: 160px; border: 1px solid rgba(229, 193, 88, 0.20); animation: floatY 4.5s      ease-in-out infinite; }
.party-card-2 { top: 30%; left: 50%; transform: translateX(-50%) translateZ(0); width: 180px; border: 1px solid rgba(229, 193, 88, 0.30); animation: floatY 4.5s 0.8s ease-in-out infinite; }
.party-card-3 { bottom: 5%; right: 5%; width: 160px; border: 1px solid rgba(244,63,94,0.2); animation: floatY 4.5s 1.5s ease-in-out infinite; }

/* Override to handle translateX on party-card-2 */
@keyframes floatCard2 {
  0%, 100% { transform: translateX(-50%) translateY(0)    translateZ(0); }
  50%       { transform: translateX(-50%) translateY(-12px) translateZ(0); }
}
.party-card-2 { animation-name: floatCard2; }

.party-orb-bg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(212,175,55,0.07), transparent 70%);
  border-radius: 50%; pointer-events: none;
  /* Static Ã¢â‚¬â€ no animation, saves GPU */
}

/* ============ FOOTER ============ */
.site-footer { position: relative; border-top: 1px solid rgba(229, 193, 88, 0.14); }

.footer-top {
  padding: clamp(60px, 8vw, 100px) 0 60px;
  background: linear-gradient(to bottom, rgba(212,175,55,0.025), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: clamp(28px, 5vw, 56px);
}

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; max-width: 280px; }

.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(28,28,30,0.95);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--text-secondary);
  transition: border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  will-change: transform;
}
.social-btn:hover { border-color: var(--gold-primary); color: var(--gold-primary); transform: translateY(-3px) translateZ(0); }

.footer-col-title {
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-primary); margin-bottom: 20px;
  position: relative; padding-bottom: 12px;
}
.footer-col-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 28px; height: 2px; background: var(--gold-primary); border-radius: var(--radius-pill);
}

.footer-hours { display: flex; flex-direction: column; gap: 12px; }
.hours-row { display: flex; flex-direction: column; gap: 4px; }
.hours-row span:first-child { font-size: 0.8rem; color: var(--text-muted); }
.hours-val { font-size: 1rem; font-weight: 700; color: var(--gold-primary); }

.open-status {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--neon-green); font-weight: 600; margin-top: 8px;
}

.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6;
}
.footer-contact-item i { margin-top: 2px; flex-shrink: 0; font-size: 0.85rem; }
.footer-contact-item a { color: var(--text-secondary); transition: color var(--transition-fast); }
.footer-contact-item a:hover { color: var(--gold-primary); }

.footer-cta-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 18px; }
.footer-cta-btns { display: flex; flex-direction: column; gap: 10px; }
.footer-cta-btn { width: 100%; justify-content: center; padding: 12px 20px; font-size: 0.85rem; }

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--glass-border);
}
.footer-bottom .container {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p, .footer-credits { font-size: 0.78rem; color: var(--text-muted); }

/* ============ FLOATING WHATSAPP ============ */
.wa-float-btn {
  position: fixed; bottom: 26px; right: 26px; z-index: 9999;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #25d366, #1da851);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
  will-change: transform;
  animation: floatSoft 4s ease-in-out infinite;
  transition: transform var(--transition-fast);
}
.wa-float-btn:hover { transform: scale(1.15) translateZ(0); animation-play-state: paused; }

/* ============ SCROLL REVEAL Ã¢â‚¬â€ opacity + transform only ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px) translateZ(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: transform, opacity;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

/* ============ RESPONSIVE Ã¢â‚¬â€ TABLET ============ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card--center { margin-top: 0; grid-column: 1 / -1; max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .party-grid { grid-template-columns: 1fr; }
  .party-cards-col { height: 300px; order: -1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }
}

@media (max-width: 900px) {
  .hero-content-wrapper { grid-template-columns: 1fr; }
  .hero-visual-col { display: none; }
  .hero-text-col { max-width: 600px; margin: 0 auto; text-align: center; align-items: center; }
  .hero-subheadline { text-align: center; }
  .hero-cta-group { justify-content: center; }
  .hero-stats-row { justify-content: center; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; inset: 0;
    background: rgba(7, 18, 14,0.97);
    flex-direction: column; justify-content: center; align-items: center; gap: 24px;
    transform: translateX(100%) translateZ(0);
    transition: transform var(--transition-slow);
    z-index: 990; will-change: transform;
  }
  .nav-links.open { transform: translateX(0) translateZ(0); }
  .nav-link { font-size: 1.3rem; padding: 12px 24px; }
  .nav-cta { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--center { grid-column: auto; max-width: 100%; }
  .menu-tab span { display: none; }
  .menu-tab { min-width: 52px; padding: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .headline-brand { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .btn-lg { text-align: center; justify-content: center; }
  .party-cards-col { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide,
  .gallery-item--tall { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 480px) {
  :root { --section-pad: 60px; }
  .menu-tabs-wrapper { gap: 4px; padding: 4px; }
  .menu-grid { grid-template-columns: 1fr; }
  .hero-stats-row { gap: 8px; }
  .stat-chip { padding: 10px 12px; min-width: 70px; }
  .gallery-grid { grid-template-columns: 1fr; }
}


