/**
 * =============================================================================
 * SEOL KITCHEN - Main Stylesheet
 * =============================================================================
 * Dark, moody, cinematic Seoul night market vibe with neon green accent
 * 
 * Color Palette:
 * - Deep black backgrounds with smoky gradients
 * - Neon green (#39ff14) for primary accent/glow effects
 * - Hot pink (#ff2d55) for secondary accent
 * - Off-white text for readability on dark backgrounds
 * =============================================================================
 */

/* =============================================================================
   GOOGLE FONTS IMPORTS
   ============================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Mono:wght@400;700&display=swap');

/* =============================================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================================= */
:root {
  /* Background Colors */
  --bg-deep: #0d0d0d;       /* Deep black — main background */
  --bg-card: #1a1a1a;       /* Dark grey — cards, elevated surfaces */
  --bg-overlay: rgba(13, 13, 13, 0.85); /* Semi-transparent overlay */

  /* Text Colors */
  --text-primary: #e8e8e8;  /* Off-white — primary text */
  --text-secondary: #a0a0a0; /* Muted grey — secondary text */
  --text-white: #f5f5f5;    /* Pure white — high-contrast text */

  /* Accent Colors */
  --accent-neon: #39ff14;   /* Neon green — primary accent, glow effects */
  --accent-pink: #ff2d55;   /* Hot pink — secondary accent, warnings */

  /* Typography */
  --font-display: 'Bebas Neue', Impact, sans-serif; /* Headers, display text */
  --font-body: 'Space Mono', 'Courier New', monospace; /* Body text, UI */

  /* Spacing Scale (8px base) */
  --space-xs: 0.5rem;   /* 8px */
  --space-sm: 1rem;     /* 16px */
  --space-md: 1.5rem;   /* 24px */
  --space-lg: 2rem;     /* 32px */
  --space-xl: 3rem;     /* 48px */
  --space-2xl: 4rem;    /* 64px */

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;

  /* Z-Index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-tooltip: 400;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-deep);
  min-height: 100vh;
}

/* =============================================================================
   TYPOGRAPHY
   ============================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400; /* Bebas Neue only has one weight */
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-white);
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: var(--space-sm);
}

a {
  color: var(--accent-neon);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--text-white);
  text-shadow: 0 0 8px var(--accent-neon);
}

/* =============================================================================
   NEON GLOW EFFECTS (Text & Border)
   ============================================================================= */

/**
 * Neon Text Glow
 * Creates the signature Seoul night market neon sign effect
 * Multiple layered shadows create the glow diffusion
 */
.neon-text {
  color: var(--accent-neon);
  text-shadow:
    0 0 5px var(--accent-neon),
    0 0 10px var(--accent-neon),
    0 0 20px var(--accent-neon),
    0 0 40px var(--accent-neon);
}

/**
 * Neon Border Glow
 * For cards, buttons, and interactive elements
 * Subtle outer glow suggests light emission
 */
.neon-border {
  border: 2px solid var(--accent-neon);
  box-shadow:
    0 0 5px var(--accent-neon),
    0 0 10px var(--accent-neon),
    inset 0 0 5px rgba(57, 255, 20, 0.1);
}

/**
 * Intense Neon Glow
 * For hero elements and maximum impact
 */
.neon-glow-intense {
  color: var(--accent-neon);
  text-shadow:
    0 0 5px var(--accent-neon),
    0 0 10px var(--accent-neon),
    0 0 20px var(--accent-neon),
    0 0 40px var(--accent-neon),
    0 0 80px var(--accent-neon);
  animation: flicker 3s infinite alternate;
}

/* =============================================================================
   CSS ANIMATIONS
   ============================================================================= */

/**
 * Smoke Gradient Animation
 * Hero background with animated smoky gradient
 * Cycles through dark greens and blacks with subtle movement
 * Uses layered radial gradients for depth
 */
@keyframes smoke-gradient {
  0% {
    background:
      radial-gradient(ellipse at 20% 30%, rgba(30, 50, 30, 0.4) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 20%, rgba(20, 40, 20, 0.3) 0%, transparent 40%),
      radial-gradient(ellipse at 40% 70%, rgba(40, 60, 40, 0.2) 0%, transparent 45%),
      linear-gradient(180deg, var(--bg-deep) 0%, #0a0f0a 50%, var(--bg-deep) 100%);
  }
  25% {
    background:
      radial-gradient(ellipse at 60% 40%, rgba(25, 45, 25, 0.5) 0%, transparent 55%),
      radial-gradient(ellipse at 30% 80%, rgba(35, 55, 35, 0.3) 0%, transparent 50%),
      radial-gradient(ellipse at 75% 60%, rgba(15, 35, 15, 0.4) 0%, transparent 35%),
      linear-gradient(180deg, #0a0f0a 0%, var(--bg-deep) 50%, #0f150f 100%);
  }
  50% {
    background:
      radial-gradient(ellipse at 85% 50%, rgba(40, 60, 40, 0.35) 0%, transparent 45%),
      radial-gradient(ellipse at 15% 70%, rgba(25, 50, 25, 0.45) 0%, transparent 55%),
      radial-gradient(ellipse at 55% 25%, rgba(30, 45, 30, 0.25) 0%, transparent 40%),
      linear-gradient(180deg, var(--bg-deep) 0%, #0d120d 50%, var(--bg-deep) 100%);
  }
  75% {
    background:
      radial-gradient(ellipse at 45% 55%, rgba(20, 40, 20, 0.5) 0%, transparent 50%),
      radial-gradient(ellipse at 70% 85%, rgba(35, 50, 35, 0.3) 0%, transparent 45%),
      radial-gradient(ellipse at 25% 35%, rgba(40, 65, 40, 0.25) 0%, transparent 50%),
      linear-gradient(180deg, #0f150f 0%, var(--bg-deep) 50%, #0a0f0a 100%);
  }
  100% {
    background:
      radial-gradient(ellipse at 20% 30%, rgba(30, 50, 30, 0.4) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 20%, rgba(20, 40, 20, 0.3) 0%, transparent 40%),
      radial-gradient(ellipse at 40% 70%, rgba(40, 60, 40, 0.2) 0%, transparent 45%),
      linear-gradient(180deg, var(--bg-deep) 0%, #0a0f0a 50%, var(--bg-deep) 100%);
  }
}

/**
 * Flicker Animation
 * Neon sign flicker effect simulating real neon tube behavior
 * Opacity keyframes create realistic flickering pattern
 */
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
    text-shadow:
      0 0 5px var(--accent-neon),
      0 0 10px var(--accent-neon),
      0 0 20px var(--accent-neon),
      0 0 40px var(--accent-neon);
  }
  20%, 24%, 55% {
    opacity: 0.6;
    text-shadow:
      0 0 3px var(--accent-neon),
      0 0 6px var(--accent-neon);
  }
  22% {
    opacity: 0.4;
    text-shadow:
      0 0 2px var(--accent-neon);
  }
}

/**
 * Slide In Right Animation
 * Menu items slide in from the right when entering viewport
 * Creates dynamic, engaging reveal effect
 */
@keyframes slide-in-right {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/**
 * Typewriter Cursor Animation
 * Blinking cursor for typewriter effect
 * Classic terminal-style blinking block
 */
@keyframes typewriter-cursor {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

/* =============================================================================
   LAYOUT COMPONENTS
   ============================================================================= */

/**
 * Container
 * Centers content with max-width and responsive padding
 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/**
 * Section
 * Vertical spacing between page sections
 */
.section {
  padding: var(--space-2xl) 0;
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  /* Apply animated smoky gradient background */
  background: var(--bg-deep);
  animation: smoke-gradient 15s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: var(--z-base);
  padding: var(--space-lg);
}

.hero__title {
  font-size: clamp(3rem, 12vw, 8rem);
  margin-bottom: var(--space-sm);
  /* Intense neon glow for hero title */
  color: var(--accent-neon);
  text-shadow:
    0 0 5px var(--accent-neon),
    0 0 10px var(--accent-neon),
    0 0 20px var(--accent-neon),
    0 0 40px var(--accent-neon),
    0 0 80px var(--accent-neon);
  animation: flicker 4s infinite alternate;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: var(--text-secondary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* =============================================================================
   DARK CARD STYLING
   ============================================================================= */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal),
    border-color var(--transition-normal);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 255, 20, 0.3);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(57, 255, 20, 0.1);
}

/* Card with neon border accent */
.card--neon {
  border: 1px solid var(--accent-neon);
  box-shadow:
    0 0 5px var(--accent-neon),
    0 0 10px rgba(57, 255, 20, 0.2);
}

/* =============================================================================
   MENU GRID & ITEMS
   ============================================================================= */

/**
 * Menu Grid
 * Responsive grid for menu items (1 col mobile, 2 cols tablet, 3 cols desktop)
 */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/**
 * Menu Item Card
 * Individual menu item with slide-in animation
 */
.menu-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0; /* Start hidden for animation */
  animation: slide-in-right 0.6s ease-out forwards;
}

/* Stagger animation delays for menu items */
.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }
.menu-item:nth-child(6) { animation-delay: 0.6s; }
.menu-item:nth-child(7) { animation-delay: 0.7s; }
.menu-item:nth-child(8) { animation-delay: 0.8s; }
.menu-item:nth-child(9) { animation-delay: 0.9s; }

.menu-item__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
  gap: var(--space-sm);
}

.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-white);
  text-transform: uppercase;
}

.menu-item__price {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-neon);
  white-space: nowrap;
}

.menu-item__description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* =============================================================================
   FILTER BUTTONS (V, VG, GF, SPICY)
   ============================================================================= */

/**
 * Filter Button Base
 * Dark styled buttons for menu filtering
 */
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--accent-neon);
  color: var(--accent-neon);
}

/**
 * Filter Button Active State
 * Glowing active state for selected filters
 */
.filter-btn--active {
  background: rgba(57, 255, 20, 0.15);
  border-color: var(--accent-neon);
  color: var(--accent-neon);
  box-shadow:
    0 0 10px rgba(57, 255, 20, 0.3),
    inset 0 0 10px rgba(57, 255, 20, 0.1);
}

/**
 * Filter Button Variants
 */

/* Vegetarian - Green accent */
.filter-btn--v.filter-btn--active,
.filter-btn--vg.filter-btn--active {
  background: rgba(57, 255, 20, 0.15);
  border-color: var(--accent-neon);
  color: var(--accent-neon);
}

/* Gluten-Free - Subtle accent */
.filter-btn--gf.filter-btn--active {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-white);
  color: var(--text-white);
}

/* Spicy - Pink/red accent */
.filter-btn--spicy.filter-btn--active {
  background: rgba(255, 45, 85, 0.15);
  border-color: var(--accent-pink);
  color: var(--accent-pink);
  box-shadow:
    0 0 10px rgba(255, 45, 85, 0.3),
    inset 0 0 10px rgba(255, 45, 85, 0.1);
}

/* =============================================================================
   FORM INPUTS (Dark Styling)
   ============================================================================= */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: var(--space-sm);
  background: var(--bg-deep);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-neon);
  box-shadow:
    0 0 0 3px rgba(57, 255, 20, 0.1),
    0 0 10px rgba(57, 255, 20, 0.2);
}

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

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a0a0a0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-sm) center;
  padding-right: var(--space-xl);
}

/* =============================================================================
   BUTTONS
   ============================================================================= */
.btn {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.btn:active {
  transform: scale(0.98);
}

/**
 * Primary Button (Neon Green)
 */
.btn--primary {
  background: var(--accent-neon);
  color: var(--bg-deep);
  border-color: var(--accent-neon);
}

.btn--primary:hover {
  background: transparent;
  color: var(--accent-neon);
  box-shadow:
    0 0 20px rgba(57, 255, 20, 0.4),
    inset 0 0 20px rgba(57, 255, 20, 0.1);
}

/**
 * Secondary Button (Outline)
 */
.btn--secondary {
  background: transparent;
  color: var(--accent-neon);
  border-color: var(--accent-neon);
}

.btn--secondary:hover {
  background: rgba(57, 255, 20, 0.1);
  box-shadow:
    0 0 15px rgba(57, 255, 20, 0.3);
}

/**
 * Ghost Button (Minimal)
 */
.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
  color: var(--text-white);
  border-color: var(--text-white);
}

/* =============================================================================
   BADGES & TAGS
   ============================================================================= */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 2px;
  vertical-align: middle;
}

.badge--v,
.badge--vg {
  background: rgba(57, 255, 20, 0.2);
  color: var(--accent-neon);
  border: 1px solid rgba(57, 255, 20, 0.4);
}

.badge--gf {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge--spicy {
  background: rgba(255, 45, 85, 0.2);
  color: var(--accent-pink);
  border: 1px solid rgba(255, 45, 85, 0.4);
}

/* =============================================================================
   TYPEWRAPPER EFFECT
   ============================================================================= */
.typewriter {
  display: inline;
}

.typewriter__text {
  display: inline;
}

.typewriter__cursor {
  display: inline;
  width: 2px;
  height: 1em;
  background: var(--accent-neon);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: typewriter-cursor 1s step-end infinite;
  box-shadow: 0 0 5px var(--accent-neon);
}

/* =============================================================================
   LOCATION/DAYTIME CARDS
   ============================================================================= */
.location-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border-left: 3px solid var(--accent-neon);
}

.location-card__day {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent-neon);
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.location-card__location {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: var(--space-xs);
}

.location-card__time {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.footer {
  background: var(--bg-card);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer__text {
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__text a {
  color: var(--accent-neon);
}

/* =============================================================================
   UTILITY CLASSES
   ============================================================================= */
.text-neon { color: var(--accent-neon); }
.text-pink { color: var(--accent-pink); }
.text-muted { color: var(--text-secondary); }
.text-white { color: var(--text-white); }

.bg-deep { background: var(--bg-deep); }
.bg-card { background: var(--bg-card); }

.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =============================================================================
   NAVIGATION
   ============================================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--bg-overlay);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-sm) 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-neon);
  text-shadow: 0 0 10px var(--accent-neon);
  letter-spacing: 0.1em;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  position: relative;
  transition: background var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  left: 0;
  transition: transform var(--transition-fast);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.nav__toggle--active .hamburger { background: transparent; }
.nav__toggle--active .hamburger::before { transform: rotate(45deg); top: 0; }
.nav__toggle--active .hamburger::after { transform: rotate(-45deg); bottom: 0; }

.nav__menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-neon);
  text-shadow: 0 0 8px var(--accent-neon);
}

@media (max-width: 639px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    align-items: center;
    padding: var(--space-md);
    gap: var(--space-md);
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav__menu.nav__menu--open { transform: translateY(0); }
}

/* =============================================================================
   CONTACT PAGE STYLES
   ============================================================================= */

/* Contact Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xl);
  }
}

/* Contact Info Column */
.contact-info__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item:last-child { border-bottom: none; }

.contact-item__icon {
  font-size: 1.25rem;
  line-height: 1.5;
}

.contact-item__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.contact-item__value {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
}

/* Contact Forms Column */
.contact-forms {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.inquiry-form__title,
.catering-form__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Row for side-by-side fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

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

/* Form hint text */
.form-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: var(--space-xs);
}

/* Catering Callout Box */
.catering-callout {
  text-align: center;
  padding: var(--space-xl);
}

.catering-callout__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.catering-callout__content {
  max-width: 600px;
  margin: 0 auto;
}

.catering-callout__list {
  list-style: none;
  margin-bottom: var(--space-md);
}

.catering-callout__list li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  padding: var(--space-xs) 0;
}

.catering-callout__note {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.catering-callout__note a {
  color: var(--accent-neon);
}

/* Footer specific styles for contact page */
.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (min-width: 640px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

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

@media (min-width: 640px) { .footer-brand { text-align: left; } }

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-neon);
  text-shadow: 0 0 10px var(--accent-neon);
  letter-spacing: 0.1em;
  display: block;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-xs);
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-lg);
  justify-content: center;
}

@media (min-width: 640px) { .footer-info { justify-content: flex-end; } }

.footer-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

@media (min-width: 640px) { .footer-item { text-align: right; } }

.footer-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.footer-value {
  font-size: 0.875rem;
  color: var(--text-primary);
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

/* =============================================================================
   RESPONSIVE UTILITIES
   ============================================================================= */
@media (max-width: 639px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .hide-tablet { display: none !important; }
}

@media (min-width: 1024px) {
  .hide-desktop { display: none !important; }
}

/* =============================================================================
   NAVIGATION
   ============================================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--bg-card);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0 var(--space-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-neon);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
  text-decoration: none;
  letter-spacing: 0.1em;
}

.nav-logo:hover {
  color: var(--accent-neon);
  text-shadow: 0 0 10px var(--accent-neon), 0 0 20px var(--accent-neon);
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  padding: var(--space-xs) 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-neon);
  border-bottom-color: var(--accent-neon);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  left: 0;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

@media (max-width: 767px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    align-items: center;
    padding: var(--space-lg);
    gap: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
  }
  .nav__menu--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* =============================================================================
   ABOUT SECTION
   ============================================================================= */
.about-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-deep);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .about-grid { grid-template-columns: 2fr 1fr; }
}

.about-content { color: var(--text-primary); }

.about-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-md);
  color: var(--accent-neon);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.about-content p { margin-bottom: var(--space-sm); color: var(--text-secondary); }

.about-lead {
  font-size: 1.125rem;
  color: var(--text-white) !important;
  font-weight: 700;
}

.about-instagram {
  display: inline-block;
  margin-top: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--accent-neon);
}

.about-highlight {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.highlight-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border-left: 3px solid var(--accent-neon);
}

.highlight-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

.highlight-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-white);
}

/* =============================================================================
   LOCATIONS SECTION
   ============================================================================= */
.locations-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-card);
}

.locations-section h2,
.locations-section .section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--accent-neon);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
}

.location-day {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent-neon);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: var(--space-xs);
}

.location-place {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: var(--space-xs);
}

.location-address {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

.location-time {
  font-size: 0.875rem;
  color: var(--accent-neon);
}

/* =============================================================================
   MENU PREVIEW SECTION
   ============================================================================= */
.menu-preview-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-deep);
}

.menu-preview-section h2,
.menu-preview-section .section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--accent-neon);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .menu-preview-grid { grid-template-columns: repeat(3, 1fr); }
}

.menu-preview-footer {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Index page menu-item specific overrides */
.menu-item-price {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-neon);
  display: block;
  margin-bottom: var(--space-xs);
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: var(--space-sm);
}

.menu-item-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.menu-item-btn {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-neon);
  cursor: pointer;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.menu-item-btn:hover {
  background: rgba(57, 255, 20, 0.2);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.menu-item {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(57, 255, 20, 0.1);
}

.ingredient-popup {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-card);
  border: 1px solid var(--accent-neon);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  width: 280px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal), transform var(--transition-normal);
  z-index: var(--z-tooltip);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
  margin-bottom: var(--space-sm);
}

.menu-item:hover .ingredient-popup,
.ingredient-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.ingredient-popup-content {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.ingredient-popup-close {
  position: absolute;
  top: 4px;
  right: 8px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1rem;
  cursor: pointer;
}

.ingredient-popup-close:hover { color: var(--accent-neon); }

/* =============================================================================
   CONTACT PAGE
   ============================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 2fr; }
}

.contact-info__title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent-neon);
  margin-bottom: var(--space-md);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-item__icon {
  font-size: 1.25rem;
  line-height: 1.5;
}

.contact-item__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item__label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.contact-item__value {
  font-size: 0.875rem;
  color: var(--text-primary);
}

a.contact-item__value:hover {
  color: var(--accent-neon);
  text-shadow: 0 0 5px rgba(57, 255, 20, 0.5);
}

.contact-forms {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.inquiry-form__title,
.catering-form__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

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

.form-hint {
  display: block;
  font-size: 0.625rem;
  color: var(--text-secondary);
  margin-top: var(--space-xs);
}

.catering-callout {
  margin-top: var(--space-xl);
}

.catering-callout__title {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.catering-callout__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md) 0;
}

.catering-callout__list li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: var(--space-xs) 0;
  padding-left: var(--space-md);
  position: relative;
}

.catering-callout__list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent-neon);
  font-weight: 700;
}

.catering-callout__note {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Footer overrides for pages using footer-content */
.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (min-width: 640px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

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

@media (min-width: 640px) { .footer-brand { text-align: left; } }

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-neon);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

@media (min-width: 640px) { .footer-info { justify-content: flex-end; } }

.footer-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

@media (min-width: 640px) { .footer-item { text-align: right; } }

.footer-label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.footer-value {
  font-size: 0.875rem;
  color: var(--text-primary);
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  margin: 0;
}

/* =============================================================================
   HERO CONTENT (consistent across pages)
   ============================================================================= */
.hero-content {
  position: relative;
  z-index: var(--z-base);
  padding: var(--space-lg);
  text-align: center;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: var(--text-secondary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.hero-title {
  font-size: clamp(3rem, 12vw, 8rem);
  margin-bottom: var(--space-sm);
  color: var(--accent-neon);
  text-shadow:
    0 0 5px var(--accent-neon),
    0 0 10px var(--accent-neon),
    0 0 20px var(--accent-neon),
    0 0 40px var(--accent-neon),
    0 0 80px var(--accent-neon);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.hero-descriptor {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
}

.hero--menu {
  min-height: 40vh;
}