/* =====================================================
   🍋 LEMON GARDEN - CLEAN & SIMPLE CSS
   =====================================================
   Temiz, Basit ve Etkili Tasarım
   ===================================================== */

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background: #ffffff;
  overflow-x: hidden;
}

/* =====================================================
   🎨 VARIABLES
   ===================================================== */
:root {
  /* Colors */
  --primary: #f59e0b;
  --primary-light: #fcd34d;
  --primary-dark: #d97706;
  --primary-glow: rgba(245, 158, 11, 0.3);
  --primary-glow-strong: rgba(245, 158, 11, 0.6);
  --secondary: #10b981;
  --secondary-light: #34d399;
  --secondary-glow: rgba(16, 185, 129, 0.4);
  --accent: #3b82f6;
  --accent-light: #60a5fa;
  --accent-glow: rgba(59, 130, 246, 0.4);
  
  /* Grays */
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --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-glow: 0 0 20px var(--primary-glow);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-glow-strong: 0 0 30px var(--primary-glow-strong);
  --shadow-neon: 0 0 40px var(--primary-glow), 0 0 80px var(--primary-glow);
  --shadow-floating: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-elastic: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Dark Theme */
[data-theme="dark"] {
  /* Dark Colors - Siyah Tema */
  --gray-50: #0f172a;
  --gray-100: #1e293b;
  --gray-200: #334155;
  --gray-300: #475569;
  --gray-400: #64748b;
  --gray-500: #94a3b8;
  --gray-600: #cbd5e1;
  --gray-700: #e2e8f0;
  --gray-800: #f1f5f9;
  --gray-900: #f8fafc;
  
  /* Dark Backgrounds */
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-card: #334155;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --border-color: #475569;
}

[data-theme="dark"] body {
  background: #0f172a;
  color: #f8fafc;
}

/* Dark Mode - Header */
[data-theme="dark"] .header {
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid #334155;
}

[data-theme="dark"] .nav-link {
  color: #cbd5e1;
}

[data-theme="dark"] .nav-link:hover {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
}

[data-theme="dark"] .theme-toggle {
  background: #334155;
  border: 1px solid #475569;
  color: #cbd5e1;
}

/* Dark Mode - Hero */
[data-theme="dark"] .hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, rgba(245, 158, 11, 0.05) 100%);
}

[data-theme="dark"] .hero-title {
  color: #f8fafc;
}

[data-theme="dark"] .hero-subtitle {
  color: #94a3b8;
}

[data-theme="dark"] .owner-info {
  background: linear-gradient(135deg, #1e293b 0%, rgba(51, 65, 85, 0.8) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Dark Mode - Sections */
[data-theme="dark"] .about {
  background: #1e293b;
}

[data-theme="dark"] .contact {
  background: #1e293b;
}

[data-theme="dark"] .section-title {
  color: #f8fafc;
}

[data-theme="dark"] .section-subtitle {
  color: #94a3b8;
}

/* Dark Mode - Cards */
[data-theme="dark"] .feature-card {
  background: linear-gradient(135deg, #334155 0%, rgba(51, 65, 85, 0.8) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .feature-card h3 {
  color: #60a5fa;
}

[data-theme="dark"] .feature-card p {
  color: #94a3b8;
}

[data-theme="dark"] .menu-card {
  background: linear-gradient(135deg, #334155 0%, rgba(51, 65, 85, 0.9) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

[data-theme="dark"] .menu-card-title {
  color: #f8fafc;
}

[data-theme="dark"] .menu-card-description {
  color: #94a3b8;
}

[data-theme="dark"] .info-card {
  background: linear-gradient(135deg, #334155 0%, rgba(51, 65, 85, 0.8) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

[data-theme="dark"] .info-content h3 {
  color: #34d399;
}

[data-theme="dark"] .info-content p {
  color: #94a3b8;
}

[data-theme="dark"] .working-hours {
  background: linear-gradient(135deg, #334155 0%, rgba(51, 65, 85, 0.9) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

[data-theme="dark"] .working-hours h3 {
  color: #fcd34d;
}

[data-theme="dark"] .hour-item {
  background: #1e293b;
}

[data-theme="dark"] .hour-item:hover {
  background: linear-gradient(135deg, #475569, rgba(245, 158, 11, 0.1));
}

[data-theme="dark"] .day {
  color: #cbd5e1;
}

[data-theme="dark"] .time {
  color: #fcd34d;
}

/* Dark Mode - Search & Filters */
[data-theme="dark"] .search-input {
  background: #334155;
  border: 2px solid #475569;
  color: #f8fafc;
}

[data-theme="dark"] .search-input:focus {
  border-color: #f59e0b;
}

[data-theme="dark"] .filter-btn {
  background: #334155;
  border: 2px solid #f59e0b;
  color: #f59e0b;
}

[data-theme="dark"] .filter-btn:hover,
[data-theme="dark"] .filter-btn.active {
  background: #f59e0b;
  color: #0f172a;
}

/* Dark Mode - Footer */
[data-theme="dark"] .footer {
  background: #0f172a;
  border-top: 1px solid #334155;
}

[data-theme="dark"] .footer-section h4 {
  color: #fcd34d;
}

[data-theme="dark"] .footer-section p {
  color: #94a3b8;
}

[data-theme="dark"] .footer-bottom {
  border-top: 1px solid #334155;
}

[data-theme="dark"] .footer-bottom p {
  color: #64748b;
}

/* =====================================================
   🧭 HEADER
   ===================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 20px rgba(0, 0, 0, 0.02);
  height: 70px;
  transition: var(--transition);
}

.header:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.nav-brand .logo {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  text-shadow: 0 2px 4px rgba(245, 158, 11, 0.1);
}

.nav-brand .logo:hover {
  color: var(--primary-dark);
  transform: scale(1.05);
  text-shadow: 0 4px 8px rgba(245, 158, 11, 0.2);
  filter: drop-shadow(0 0 10px var(--primary-glow));
  animation: pulse 2s infinite;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-2);
  align-items: center;
}

.nav-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  padding: var(--space-2) var(--space-4);
  border-radius: 0.5rem;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
  background: linear-gradient(135deg, var(--gray-50), rgba(245, 158, 11, 0.05));
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.1);
  border-bottom: 2px solid var(--primary);
  text-shadow: 0 0 8px var(--primary-glow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  font-size: 1.125rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
  animation: rotate 0.6s ease-in-out;
  filter: drop-shadow(0 0 15px var(--primary-glow-strong));
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu.active {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--gray-200);
    flex-direction: column;
    padding: var(--space-4);
    gap: var(--space-2);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-link {
    width: 100%;
    text-align: center;
    padding: var(--space-3) var(--space-4);
    border-radius: 0.5rem;
  }
}

/* =====================================================
   🎨 HERO SECTION
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-32) var(--space-6) var(--space-20);
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 50%, rgba(245, 158, 11, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  animation: colorShift 15s ease-in-out infinite;
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: var(--space-2) var(--space-6);
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: var(--space-8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  transition: var(--transition);
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  animation: glow 2s ease-in-out infinite alternate;
  filter: brightness(1.1);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  margin-bottom: var(--space-6);
  color: var(--gray-900);
  line-height: 1.1;
}

.title-line {
  color: var(--primary);
  background: linear-gradient(45deg, var(--primary), var(--primary-light), var(--primary));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: var(--space-8);
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.owner-info {
  background: linear-gradient(135deg, white 0%, rgba(248, 250, 252, 0.8) 100%);
  padding: var(--space-8);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  margin: var(--space-8) 0;
  border: 1px solid rgba(245, 158, 11, 0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.owner-info:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
  background: linear-gradient(135deg, white 0%, rgba(245, 158, 11, 0.02) 100%);
}

.owner-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.owner-phone {
  font-size: 1.125rem;
  color: var(--secondary);
  margin-bottom: var(--space-6);
  font-weight: 600;
}

.special-events-highlight {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: white;
  padding: var(--space-6);
  border-radius: 0.75rem;
  margin-top: var(--space-6);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  transition: var(--transition);
}

.special-events-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  filter: brightness(1.05) saturate(1.1);
  animation: shimmer 2s ease-in-out infinite;
}

.special-events-highlight h4 {
  margin-bottom: var(--space-3);
  font-size: 1.125rem;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   🎯 BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-8);
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  filter: brightness(1.1);
  animation: buttonPulse 0.6s ease-in-out;
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
  border-color: var(--primary-light);
  filter: brightness(1.1);
}

/* =====================================================
   📐 SECTIONS
   ===================================================== */
.section {
  padding: var(--space-24) 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: var(--space-1) var(--space-4);
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: var(--space-4);
  color: var(--gray-900);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.7;
}

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

/* =====================================================
   ℹ️ ABOUT SECTION
   ===================================================== */
.about {
  background: var(--gray-50);
}

.about-content {
  display: grid;
  gap: var(--space-16);
}

.about-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.lead-text {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.about-text p {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.feature-card {
  background: linear-gradient(135deg, white 0%, rgba(248, 250, 252, 0.8) 100%);
  padding: var(--space-8);
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg, white 0%, rgba(59, 130, 246, 0.02) 100%);
  filter: brightness(1.02);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
  display: block;
}

.feature-card h3 {
  color: var(--accent);
  margin-bottom: var(--space-3);
  font-size: 1.25rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* =====================================================
   🍽️ MENU SECTION
   ===================================================== */
.menu-controls {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-16);
  align-items: center;
}

.search-box {
  max-width: 600px;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: var(--space-4) var(--space-6);
  border: 2px solid var(--gray-300);
  border-radius: 0.5rem;
  font-size: 1rem;
  background: white;
  color: var(--gray-900);
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}

.filter-btn {
  padding: var(--space-2) var(--space-4);
  border: 2px solid var(--primary);
  background: white;
  color: var(--primary);
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.875rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-6);
}

.menu-card {
  background: linear-gradient(135deg, white 0%, rgba(248, 250, 252, 0.9) 100%);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid rgba(245, 158, 11, 0.1);
  backdrop-filter: blur(10px);
}

.menu-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.2);
  background: linear-gradient(135deg, white 0%, rgba(245, 158, 11, 0.02) 100%);
  filter: brightness(1.03);
}

.menu-card-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.05);
  filter: brightness(1.1) saturate(1.2);
}

.menu-card-overlay {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
}

.price-tag {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  transition: var(--transition-fast);
}

.menu-card:hover .price-tag {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  animation: priceGlow 1s ease-in-out infinite alternate;
}

.menu-card-content {
  padding: var(--space-6);
}

.menu-card-category {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: white;
  padding: var(--space-1) var(--space-3);
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: var(--space-3);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
  transition: var(--transition-fast);
}

.menu-card:hover .menu-card-category {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
  filter: brightness(1.1);
}

.menu-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--gray-900);
  line-height: 1.3;
}

.menu-card-description {
  color: var(--gray-600);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-200);
}

.menu-card-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

/* =====================================================
   📞 CONTACT SECTION
   ===================================================== */
.contact {
  background: var(--gray-50);
}

.contact-content {
  display: grid;
  gap: var(--space-12);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.info-card {
  background: linear-gradient(135deg, white 0%, rgba(248, 250, 252, 0.8) 100%);
  padding: var(--space-8);
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid rgba(16, 185, 129, 0.1);
  backdrop-filter: blur(10px);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.2);
  background: linear-gradient(135deg, white 0%, rgba(16, 185, 129, 0.02) 100%);
  filter: brightness(1.02);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
  display: block;
}

.info-content h3 {
  color: var(--secondary);
  margin-bottom: var(--space-2);
  font-size: 1.25rem;
  font-weight: 700;
}

.info-content p {
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 1.125rem;
}

.working-hours {
  background: linear-gradient(135deg, white 0%, rgba(248, 250, 252, 0.9) 100%);
  padding: var(--space-8);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(245, 158, 11, 0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.working-hours:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.12);
  border-color: var(--primary);
  background: linear-gradient(135deg, white 0%, rgba(245, 158, 11, 0.02) 100%);
}

.working-hours h3 {
  color: var(--primary);
  margin-bottom: var(--space-6);
  font-size: 1.25rem;
  font-weight: 700;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4);
  background: var(--gray-50);
  border-radius: 0.5rem;
  transition: var(--transition);
}

.hour-item:hover {
  background: linear-gradient(135deg, var(--gray-100), rgba(245, 158, 11, 0.05));
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.1);
  border-left: 4px solid var(--primary);
  filter: brightness(1.05);
}

.day {
  font-weight: 600;
  color: var(--gray-800);
}

.time {
  font-weight: 700;
  color: var(--primary);
}

/* =====================================================
   🦶 FOOTER
   ===================================================== */
.footer {
  background: var(--gray-900);
  color: white;
  padding: var(--space-16) 0 var(--space-6);
}

.footer-content {
  margin-bottom: var(--space-6);
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  text-align: center;
}

.footer-section h4 {
  margin-bottom: var(--space-3);
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 700;
}

.footer-section p {
  color: var(--gray-300);
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--gray-700);
}

.footer-bottom p {
  color: var(--gray-400);
}

/* Footer Link Styles */
.footer-section a {
  color: var(--primary) !important;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.footer-section a:hover {
  color: var(--primary-light) !important;
  border-bottom: 2px solid var(--primary);
  transform: translateY(-2px);
  text-shadow: 0 0 8px var(--primary-glow);
}

/* Dark mode footer link */
[data-theme="dark"] .footer-section a {
  color: var(--primary) !important;
}

[data-theme="dark"] .footer-section a:hover {
  color: var(--primary-light) !important;
  text-shadow: 0 0 12px var(--primary-glow);
}

/* =====================================================
   📱 RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .filter-buttons {
    gap: var(--space-1);
  }
  
  .filter-btn {
    font-size: 0.75rem;
    padding: var(--space-1) var(--space-3);
  }
  
  .hour-item {
    flex-direction: column;
    text-align: center;
    gap: var(--space-1);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-4);
  }
  
  .menu-card-content {
    padding: var(--space-4);
  }
  
  .info-card,
  .feature-card {
    padding: var(--space-6);
  }
  
  .owner-info {
    padding: var(--space-6);
  }
}

/* =====================================================
   ✨ ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes rotate {
  0% {
    transform: scale(1.1) rotate(0deg);
  }
  100% {
    transform: scale(1.1) rotate(180deg);
  }
}

@keyframes colorShift {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  }
  100% {
    box-shadow: 0 8px 35px rgba(245, 158, 11, 0.6), 0 0 20px rgba(245, 158, 11, 0.3);
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes buttonPulse {
  0% {
    transform: translateY(-2px) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.05);
  }
  100% {
    transform: translateY(-2px) scale(1);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: scale(1.1) translateY(0);
  }
  50% {
    transform: scale(1.15) translateY(-5px);
  }
}

@keyframes priceGlow {
  0% {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  }
  100% {
    box-shadow: 0 6px 30px rgba(245, 158, 11, 0.8), 0 0 15px rgba(245, 158, 11, 0.4);
  }
}

@keyframes wiggle {
  0%, 100% {
    transform: scale(1.1) rotate(0deg);
  }
  25% {
    transform: scale(1.15) rotate(-5deg);
  }
  75% {
    transform: scale(1.15) rotate(5deg);
  }
}

/* Scroll Animations */
.hero-content {
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

.menu-card {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: both;
}

.feature-card {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: both;
}

.info-card {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: both;
}

/* Staggered Animation Delays */
.menu-card:nth-child(1) { animation-delay: 0.1s; }
.menu-card:nth-child(2) { animation-delay: 0.2s; }
.menu-card:nth-child(3) { animation-delay: 0.3s; }
.menu-card:nth-child(4) { animation-delay: 0.4s; }
.menu-card:nth-child(5) { animation-delay: 0.5s; }
.menu-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
}

/* Hover Animations */
.feature-icon {
  animation: float 4s ease-in-out infinite;
  transition: var(--transition);
  will-change: transform;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3));
}

.info-icon {
  animation: float 4s ease-in-out infinite 1s;
  transition: var(--transition);
  will-change: transform;
}

.info-card:hover .info-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.3));
  animation: wiggle 0.8s ease-in-out;
}

/* Enhanced Glassmorphism */
.menu-card,
.feature-card,
.info-card,
.owner-info,
.working-hours {
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Improved Performance */
.menu-card,
.feature-card,
.info-card {
  will-change: transform, box-shadow;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Enhanced Text Effects */
.hero-title {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Improved Button Effects */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

/* =====================================================
   🎯 UTILITY CLASSES
   ===================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

/* =====================================================
   🍋 BRAND ELEMENTS
   ===================================================== */
.lemon-branches {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.02;
}

.branch {
  position: absolute;
  width: 2px;
  height: 100vh;
  background: var(--secondary);
}

.left-branch {
  left: 5%;
  transform: rotate(-8deg);
}

.right-branch {
  right: 5%;
  transform: rotate(8deg);
}

.leaf {
  position: absolute;
  width: 12px;
  height: 18px;
  background: var(--secondary);
  border-radius: 0 100% 0 100%;
  animation: float 4s ease-in-out infinite;
}

.left-branch .leaf-1 { top: 20%; left: -6px; animation-delay: 0s; }
.left-branch .leaf-2 { top: 40%; left: -6px; animation-delay: 2s; }
.left-branch .leaf-3 { top: 60%; left: -6px; animation-delay: 4s; }

.right-branch .leaf-1 { top: 25%; right: -6px; animation-delay: 1s; }
.right-branch .leaf-2 { top: 45%; right: -6px; animation-delay: 3s; }
.right-branch .leaf-3 { top: 65%; right: -6px; animation-delay: 5s; }

/* =====================================================
   🏆 CLEAN CSS COMPLETE
   ===================================================== */