/* ==========================================================================
   FUTURISTIC NEON THEME - RESTAURANT WEBSITE
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
  /* ===== NEON COLOR PALETTE ===== */
  --neon-pink: #FF00FF;
  --neon-pink-light: #FF66FF;
  --neon-pink-dark: #CC00CC;
  --neon-cyan: #00FFFF;
  --neon-blue: #00F0FF;
  --neon-purple: #A100FF;
  --neon-green: #00FF9D;
  --neon-yellow: #FFE600;
  --neon-red: #FF3366;
  
  /* ===== THEME COLORS ===== */
  --primary: var(--neon-pink);
  --primary-light: var(--neon-pink-light);
  --primary-dark: var(--neon-pink-dark);
  --secondary: var(--neon-cyan);
  --accent: var(--neon-blue);
  --success: #00FF9D;
  --warning: #FFD700;
  --danger: #FF3366;
  --info: #00F0FF;
  
  /* ===== NEUTRAL COLORS ===== */
  --dark: #0A0A1A;
  --darker: #050510;
  --darkest: #020208;
  --light: #F0F0FF;
  --lighter: #FFFFFF;
  --gray: #2A2A3A;
  --gray-dark: #1A1A2E;
  --gray-light: #3A3A4A;
  
  /* ===== GRADIENTS ===== */
  --gradient-primary: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 50%, var(--neon-blue) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
  --gradient-accent: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
  --gradient-warning: linear-gradient(135deg, #FF8E00 0%, #FFD700 100%);
  --gradient-danger: linear-gradient(135deg, #FF3366 0%, #FF0066 100%);
  --gradient-success: linear-gradient(135deg, #00FF9D 0%, #00CC7A 100%);
  
  /* ===== GLOW EFFECTS ===== */
  --glow-primary: 0 0 5px rgba(255, 0, 255, 0.8), 0 0 15px rgba(255, 0, 255, 0.6), 0 0 30px rgba(255, 0, 255, 0.4);
  --glow-secondary: 0 0 5px rgba(0, 255, 255, 0.8), 0 0 15px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.4);
  --glow-accent: 0 0 5px rgba(0, 240, 255, 0.8), 0 0 15px rgba(0, 240, 255, 0.6), 0 0 30px rgba(0, 240, 255, 0.4);
  --glow-success: 0 0 5px rgba(0, 255, 157, 0.8), 0 0 15px rgba(0, 255, 157, 0.6), 0 0 30px rgba(0, 255, 157, 0.4);
  --glow-warning: 0 0 5px rgba(255, 215, 0, 0.8), 0 0 15px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4);
  --glow-danger: 0 0 5px rgba(255, 51, 102, 0.8), 0 0 15px rgba(255, 51, 102, 0.6), 0 0 30px rgba(255, 51, 102, 0.4);
  
  /* ===== BACKGROUNDS ===== */
  --bg-primary: var(--darker);
  --bg-secondary: var(--dark);
  --bg-accent: #1A1A3A;
  --bg-light: #2A2A4A;
  --bg-card: rgba(30, 30, 60, 0.6);
  --bg-glass: rgba(20, 20, 40, 0.7);
  
  /* ===== TEXT COLORS ===== */
  --text-primary: #FFFFFF;
  --text-secondary: #E0E0FF;
  --text-muted: #A0A0C0;
  --text-dark: #0A0A1A;
  --text-light: #F0F0FF;
  
  /* ===== TYPOGRAPHY ===== */
  --font-primary: 'Roboto', sans-serif;
  --font-heading: 'Orbitron', sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  --font-size-base: 16px;
  --line-height-base: 1.7;
  
  /* ===== SPACING ===== */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
}

/* Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: var(--line-height-base);
  color: var(--text-primary);
  background: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 0, 255, 0.1) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.1) 0%, transparent 25%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  background-attachment: fixed;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(58, 134, 255, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(255, 0, 110, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 50% 50%, rgba(0, 180, 216, 0.1) 0%, transparent 30%);
  pointer-events: none;
  z-index: -1;
  opacity: 0.8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
  animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

/* 3D Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transform-style: preserve-3d;
  perspective: 500px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: none;
  outline: none;
  transform: translateZ(0);
  will-change: transform, box-shadow;
}

/* Primary Button */
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  text-shadow: 0 0 10px #FFFFFF;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px var(--neon-glow);
  transition: all 0.3s ease;
}

.btn-primary::before {
  background: linear-gradient(135deg, #3A86FF, #2667CC);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF00FF, #FF66FF, #00FFFF);
  box-shadow: 0 0 30px var(--neon-glow);
  transform: translateY(-2px) scale(1.02);
  text-shadow: 0 0 15px #FFFFFF;
}

.btn-primary:active {
  background: linear-gradient(135deg, #2667CC, #3A86FF);
}

/* Secondary Button */
.btn-secondary {
  background: rgba(0, 255, 255, 0.1);
  color: #00FFFF;
  border: 1px solid rgba(0, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  box-shadow: 0 0 15px var(--neon-glow-secondary);
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateZ(-5px);
  transition: all 0.3s ease;
  z-index: -1;
  border-radius: 8px;
}

.btn-secondary:hover {
  background: rgba(0, 255, 255, 0.2);
  border-color: #00FFFF;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 25px var(--neon-glow-secondary);
  text-shadow: 0 0 15px #00FFFF;
}

.btn-secondary:active {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(1px) scale(0.98);
}

/* Button Ripple Effect */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
  z-index: 0;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Button Hover Glow */
.btn-glow {
  position: relative;
  overflow: visible;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: inherit;
  filter: blur(10px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

.btn-glow:hover::after {
  opacity: 0.7;
}

/* Button Sizes */
.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
}

/* Button with Icon */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.btn-icon i {
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.btn-icon:hover i {
  transform: translateX(3px);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 5, 23, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
  z-index: 1000;
  padding: 0.8rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--primary);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-light);
  font-weight: 600;
  position: relative;
  padding: 0.7rem 1.5rem;
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-shadow: 0 0 5px var(--primary);
  background: rgba(255, 0, 255, 0.1);
  margin: 0 0.3rem;
  border: 1px solid rgba(255, 0, 255, 0.2);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.1);
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: white;
  transform: translateY(-3px) scale(1.05);
  text-shadow: 0 0 15px #FFFFFF;
  background: var(--gradient-primary);
  box-shadow: 0 0 20px var(--neon-glow);
  border-color: var(--primary-light);
}

.nav-link.active {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--neon-glow);
  font-weight: 700;
}

.nav-link:hover::before {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-btn {
  position: relative;
  background: var(--primary);
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  color: white;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(58, 134, 255, 0.4);
  overflow: visible;
}

.cart-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-btn:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 25px rgba(58, 134, 255, 0.4);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.cart-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.cart-btn i {
  transition: transform 0.3s ease;
}

.cart-btn:hover i {
  transform: scale(1.1) rotate(-10deg);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(255, 0, 110, 0.5);
  border: 2px solid white;
  animation: pulse 1.5s infinite;
  z-index: 2;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 110, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(255, 0, 110, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 110, 0);
  }
}

.login-btn {
  padding: 0.8rem 2.2rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 5px 20px var(--neon-glow);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.login-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-btn:hover {
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px var(--neon-glow);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.login-btn:active {
  transform: translateY(-1px) scale(0.98);
}

.login-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: 0.5s;
  z-index: -1;
}

.login-btn:hover::after {
  transform: translateX(100%);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
  box-shadow: 0 0 10px var(--neon-glow);
}

.hamburger span:first-child {
  width: 80%;
  margin-left: auto;
}

.hamburger span:last-child {
  width: 60%;
  margin-left: auto;
}

.hamburger:hover span {
  background-color: var(--accent);
  box-shadow: 0 0 15px var(--neon-glow-accent);
}

.hamburger.active span:first-child {
  transform: translateY(10px) rotate(45deg);
  width: 100%;
  background: var(--accent);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger.active span:last-child {
  transform: translateY(-10px) rotate(-45deg);
  width: 100%;
  background: var(--accent);
}

.hamburger.active {
  transform: rotate(180deg);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, -4px);
  background: var(--gradient-primary);
  box-shadow: 0 0 10px var(--primary);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, 4px);
  background: var(--gradient-primary);
  box-shadow: 0 0 10px var(--primary);
}

/* Hero Section - Modern 3D Style */
.hero {
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--darker), var(--bg-primary));
  color: var(--text-primary);
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 0, 255, 0.25) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.25) 0%, transparent 35%),
    linear-gradient(180deg, rgba(5, 5, 23, 0.9) 0%, rgba(10, 10, 35, 0.9) 100%);
  position: relative;
  z-index: 1;
  animation: backgroundPulse 15s ease infinite;
}

@keyframes backgroundPulse {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 0, 255, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(255, 0, 102, 0.1) 0%, transparent 40%);
  z-index: 1;
  animation: float 15s ease-in-out infinite;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 5rem;
  margin: 0 0 1.5rem;
  line-height: 1.1;
  position: relative;
  display: inline-block;
  animation: fadeInUp 1s ease-out;
  text-shadow: 0 0 15px var(--primary-light), 0 0 30px var(--primary);
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: gradientShift 5s ease infinite;
}

.hero-title span {
  display: block;
  background: linear-gradient(90deg, #3A86FF, #FF006E);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
  animation: gradientShift 8s ease infinite;
  background-size: 300% 300%;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, #3A86FF, #FF006E);
  border-radius: 2px;
  animation: widthGrow 1.5s ease-out forwards;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 90%;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  padding-left: 1.8rem;
  border-left: 3px solid var(--primary);
  background: linear-gradient(90deg, rgba(255,255,255,0.05), transparent);
  padding: 1rem 0 1rem 2rem;
  border-radius: 0 8px 8px 0;
  backdrop-filter: blur(5px);
  box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
  transform: translateX(-2rem);
  transition: all 0.3s ease;
}

.hero-subtitle:hover {
  transform: translateX(0);
  box-shadow: 0 0 20px var(--neon-glow-secondary);
  border-left-color: var(--secondary);
}

.hero-subtitle::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  width: 6px;
  height: 100%;
  background: var(--gradient-primary);
  filter: blur(10px);
  opacity: 0.7;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-3d-container {
  position: relative;
  perspective: 1500px;
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotateY(0deg);
  }
  50% {
    transform: translateY(-20px) rotateY(5deg);
  }
}

.food-3d-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 500px;
  position: relative;
  transform-style: preserve-3d;
  transform: perspective(1500px) rotateY(15deg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.food-3d-card:hover {
  transform: perspective(1500px) rotateY(5deg) translateY(-20px) scale(1.03);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.3);
}

.food-3d-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: translateX(-100%) skewX(-15deg);
  transition: 0.8s;
  pointer-events: none;
}

.food-3d-card:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

.food-3d-image {
  height: 60%;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
}

.food-3d-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 12, 41, 0.9), transparent);
  z-index: 1;
}

.food-3d-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.food-3d-card:hover .food-3d-image img {
  transform: scale(1.1) rotate(1deg);
}

.food-3d-info {
  padding: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.food-3d-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}

.food-3d-info h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

.food-3d-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Floating elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  animation: floatElement 15s infinite linear;
}

@keyframes floatElement {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
  }
}

/* Add multiple floating elements with different sizes and positions */
.floating-element:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-duration: 20s;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-duration: 25s;
  animation-delay: -5s;
}

.floating-element:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 80%;
  left: 20%;
  animation-duration: 30s;
  animation-delay: -10s;
}

/* Glowing text effect */
.glowing-text {
  text-shadow: 0 0 10px rgba(58, 134, 255, 0.5),
               0 0 20px rgba(58, 134, 255, 0.3),
               0 0 40px rgba(58, 134, 255, 0.2);
  animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    text-shadow: 0 0 10px rgba(58, 134, 255, 0.5),
                 0 0 20px rgba(58, 134, 255, 0.3),
                 0 0 40px rgba(58, 134, 255, 0.2);
  }
  to {
    text-shadow: 0 0 20px rgba(58, 134, 255, 0.8),
                 0 0 40px rgba(58, 134, 255, 0.6),
                 0 0 60px rgba(58, 134, 255, 0.4);
  }
}

/* Popular Dishes Section */
.popular-dishes {
  padding: 6rem 0;
  background-color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.dish-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  transform: translateZ(0);
  will-change: transform, box-shadow;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dish-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dish-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.dish-card:hover::before {
  opacity: 1;
}

.dish-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dish-card:hover .dish-image img {
  transform: scale(1.05);
}

.dish-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--dark);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dish-content {
  padding: 1.5rem;
}

.dish-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.dish-description {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  min-height: 40px;
}

.dish-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.dish-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.add-to-cart-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.add-to-cart-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 107, 107, 0.3);
}

/* Reviews Section */
.reviews {
  padding: 6rem 0;
  background-color: #f9f9f9;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 3px solid var(--primary);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.review-rating {
  color: var(--accent);
  font-size: 0.9rem;
}

.review-text {
  color: #555;
  font-style: italic;
  line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 6rem 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotateY(180deg);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
}

.footer p {
  color: #bbb;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.75rem;
}

.footer ul li a {
  color: #bbb;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bbb;
  font-size: 0.9rem;
}

/* Menu Page Specific Styles */
.menu-container {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  min-height: 100vh;
}

.menu-header {
  text-align: center;
  margin-bottom: 3rem;
}

.menu-title {
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.menu-subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.category-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
  padding: 0 5%;
  max-width: 1200px;
}

.category-btn {
  padding: 0.7rem 1.8rem;
  border: 2px solid var(--primary);
  border-radius: 50px;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

.category-btn:hover,
.category-btn.active {
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

.category-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
}

.category-btn:hover::before,
.category-btn.active::before {
  width: 100%;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transform: translateY(0);
  will-change: transform, box-shadow;
}

.menu-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.menu-item-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.05);
}

.menu-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.menu-item-content {
  padding: 1.5rem;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.menu-item-title {
  font-size: 1.25rem;
  color: var(--dark);
  margin: 0;
  font-weight: 700;
}

.menu-item-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-left: 1rem;
  white-space: nowrap;
}

.menu-item-description {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.menu-item-rating {
  display: flex;
  align-items: center;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.menu-item-rating i {
  margin-right: 0.25rem;
}

.add-to-cart-btn {
  background: var(--primary);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.add-to-cart-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 107, 107, 0.3);
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-cart:hover {
  color: var(--primary);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-item {
  display: flex;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 1rem;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.cart-item-name {
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

.cart-item-price {
  font-weight: 700;
  color: var(--primary);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}

.quantity-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background: #eee;
}

.quantity {
  width: 40px;
  text-align: center;
  font-weight: 500;
}

.remove-item {
  margin-left: auto;
  background: none;
  border: none;
  color: #ff6b6b;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s ease;
}

.remove-item:hover {
  color: #e64c4c;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: #f9f9f9;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.checkout-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-subtitle {
    margin: 0 auto var(--spacing-lg);
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-3d-container {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .dishes-grid,
  .reviews-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .category-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .hero-3d-container {
    grid-template-columns: 1fr;
  }

  .menu-item {
    max-width: 100%;
  }

  .cart-sidebar {
    max-width: 100%;
  }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  :root {
    --dark: #f8f9fa;
    --light: #1a1a1a;
    --gray: #2d2d2d;
    --white: #121212;
    --card-bg: #1e1e1e;
  }

  body {
    background-color: #121212;
    color: #f8f9fa;
  }

  .navbar,
  .menu-item,
  .dish-card,
  .review-card,
  .feature-card,
  .cart-sidebar,
  .cart-footer {
    background-color: #1e1e1e;
    color: #f8f9fa;
  }

  .nav-link,
  .nav-logo,
  .nav-logo span,
  .cart-title,
  .cart-item-name,
  .cart-total,
  .menu-item-title,
  .dish-content h3,
  .review-info h4,
  .feature-card h3 {
    color: #f8f9fa;
  }

  .nav-link::after {
    background: var(--primary);
  }

  .dish-description,
  .review-text,
  .feature-card p,
  .footer p,
  .footer ul li a,
  .footer-bottom {
    color: #bbb;
  }

  .footer {
    background: #0a0a0a;
  }

  .footer h4 {
    color: #fff;
  }

  .quantity-btn {
    background: #2d2d2d;
    border-color: #444;
    color: #fff;
  }

  .remove-item {
    color: #ff8e8e;
  }

  .remove-item:hover {
    color: #ff6b6b;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .cart-sidebar,
  .cart-btn {
    display: none !important;
  }

  body {
    padding: 0;
    background: white;
    color: black;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
  }

  .menu-item {
    break-inside: avoid;
    page-break-inside: avoid;
    border: 1px solid #eee;
    box-shadow: none;
  }

  .menu-item-image {
    height: 120px;
  }

  .add-to-cart-btn {
    display: none;
  }
}

/* Hero Section Styles */
.hero {
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  max-width: 500px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--dark);
}

.title-3d {
  display: block;
  color: var(--primary);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
}

.title-gradient {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-dark);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: none;
  outline: none;
}

.btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(5px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--dark);
  border: 2px solid var(--primary);
  color: var(--primary);
  backdrop-filter: blur(10px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.btn-accent {
  background: var(--accent);
  color: #000;
  font-weight: 600;
}

.btn-glow {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
  animation: btnGlow 3s infinite;
  z-index: -1;
}

@keyframes btnGlow {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* Food Cards */
.food-cards-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.food-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 280px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.food-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.food-card.featured {
  transform: translateY(-20px);
}

.food-card.featured:hover {
  transform: translateY(-30px);
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.food-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.food-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.food-card:hover .food-image img {
  transform: scale(1.05);
}

.food-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.food-card:hover .food-overlay {
  opacity: 1;
}

.food-details {
  padding: 1.5rem;
}

.food-details h3 {
  margin: 0 0 0.5rem;
  color: var(--dark);
  font-size: 1.25rem;
}

.food-description {
  color: var(--gray-dark);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  min-height: 40px;
}

.food-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
    margin-bottom: 3rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .food-card {
    width: 100%;
    max-width: 350px;
  }
  
  .food-card.featured {
    transform: none;
  }
  
  .food-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
  }
}