/* Modern Hauck's Grill Restaurant CSS */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

/* CSS Variables for Consistent Design */
:root {
  /* Lebendige Gelbgrün-Palette */
  --primary-color: #AEDD68;      /* Lebendiges Gelbgrün - Hauptfarbe */
  --secondary-color: #8A68DD;    /* Violett - Komplementärfarbe (gegenüber im Farbkreis) */
  --accent-color: #68BCDD;       /* Helles Türkis - Triadische Farbe */
  --highlight-color: #FFE985;    /* Helles Gelb - Analogfarbe */
  --tertiary-color: #DD6898;     /* Pink-Magenta - Triadische Farbe */
  --success-color: #7BC657;      /* Kräftiges Grün - dunklere Variante */
  --warning-color: #E89C3F;      /* Warmes Orange - für Warnungen */
  
  /* Elegante Neutral-Töne */
  --dark-charcoal: #2D3E1F;      /* Dunkles Olivgrün */
  --charcoal: #4A5A3C;           /* Mittleres Moosgrün */
  --smoke-gray: #8B9A7E;         /* Grau-Grün */
  --light-gray: #F5F9F0;         /* Sehr helles Grünweiß */
  --cream: #FFFEF8;              /* Warmes Cremeweiß */
  --white: #ffffff;              /* Reines Weiß */
  
  /* Elegante Gradienten */
  --gradient-primary: linear-gradient(135deg, #7BC657 0%, #AEDD68 50%, #CBE896 100%);
  --gradient-complementary: linear-gradient(135deg, #A68ADD 0%, #8A68DD 50%, #6F4FC8 100%);
  --gradient-dark: linear-gradient(135deg, #4A5A3C 0%, #2D3E1F 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(174, 221, 104, 0.85), rgba(104, 188, 221, 0.6));
  
  /* Sanfte Elegante Gradienten */
  --gradient-spring: linear-gradient(45deg, #AEDD68 0%, #68BCDD 25%, #8A68DD 50%, #DD6898 75%, #AEDD68 100%);
  --gradient-dreamy: radial-gradient(circle at 30% 70%, rgba(174, 221, 104, 0.25), rgba(138, 104, 221, 0.2));
  --gradient-fairy: linear-gradient(120deg, rgba(174, 221, 104, 0.12), rgba(104, 188, 221, 0.15), rgba(221, 104, 152, 0.12));
  
  /* Typography */
  --font-primary: 'Comfortaa', 'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 2rem;
  
  /* 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.15);
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-smooth: 0.5s ease;
  --transition-slow: 0.7s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Bootstrap Color Overrides for Playful Sunset Theme */
.btn-primary {
  background-color: var(--success-color);
  border-color: var(--success-color);
  color: var(--white);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px) rotate(3deg);
  box-shadow: 0 12px 25px rgba(138, 104, 221, 0.5), 0 6px 15px rgba(174, 221, 104, 0.4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-dark {
  background-color: var(--dark-charcoal) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.border-primary {
  border-color: var(--primary-color) !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--charcoal);
  background: radial-gradient(circle at top left, rgba(174, 221, 104, 0.15), transparent 65%),
              radial-gradient(circle at bottom right, rgba(138, 104, 221, 0.12), transparent 60%),
              radial-gradient(circle at center, rgba(245, 249, 240, 0.95), transparent 80%),
              #F5F9F0;
  overflow-x: hidden;
  cursor: default;
}

body::before {
  content: '🎉';
  position: fixed;
  top: 10%;
  right: 5%;
  font-size: 2rem;
  opacity: 0.1;
  animation: float 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1000;
}

body::after {
  content: '🌟';
  position: fixed;
  bottom: 15%;
  left: 8%;
  font-size: 1.8rem;
  opacity: 0.1;
  animation: float 5s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 1000;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-light {
  background: linear-gradient(135deg, #FFE985 0%, #AEDD68 50%, #7BC657 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Utility Classes */
.btn-cta {
  background: var(--success-color);
  border: 2px solid var(--success-color);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(123, 198, 87, 0.4);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.btn-cta::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: left 0.5s ease;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(138, 104, 221, 0.6);
  color: var(--white);
  animation: wiggle 0.6s ease-in-out;
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-cta:hover::before {
  left: 100%;
}

/* Active state for Reservieren button */
.btn-cta.active {
  background: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(138, 104, 221, 0.4);
}

.btn-outline-light {
  border-radius: 50px;
  border-width: 2px;
  padding: 0.7rem 2rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-outline-light:hover {
  background: var(--highlight-color);
  border-color: var(--tertiary-color);
  color: var(--dark-charcoal);
  box-shadow: 0 16px 32px rgba(174, 221, 104, 0.35);
}

.section-badge,
.section-badge-light {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-badge {
  background: linear-gradient(135deg, var(--highlight-color), var(--secondary-color));
  color: var(--dark-charcoal);
  box-shadow: 0 8px 25px rgba(174, 221, 104, 0.4);
  border: 3px solid var(--white);
  transform: rotate(-2deg);
  transition: all var(--transition-fast);
  cursor: default;
}

.section-badge:hover {
  transform: rotate(2deg) scale(1.15);
  box-shadow: 0 12px 35px rgba(138, 104, 221, 0.6);
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.section-badge-light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  transform: rotate(-1deg);
  transition: all var(--transition-fast);
  cursor: default;
  backdrop-filter: blur(10px);
}

.section-badge-light:hover {
  transform: rotate(1deg) scale(1.1);
  background: rgba(255, 255, 255, 0.25);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  animation: bounce-in 1s ease-out;
  color: var(--primary-color);
}

.section-title::after {
  content: '✨';
  position: absolute;
  top: -10px;
  right: -40px;
  font-size: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--smoke-gray);
  max-width: 600px;
}

/* Navigation */
.modern-navbar {
  background: var(--gradient-dark);
  backdrop-filter: blur(15px);
  padding: 1rem 0;
  transition: all var(--transition-fast);
  border-bottom: 2px solid rgba(174, 221, 104, 0.3);
  box-shadow: 0 12px 35px rgba(45, 58, 31, 0.3);
}

.modern-navbar.scrolled {
  background: var(--gradient-dark);
  padding: 0.65rem 0;
  box-shadow: 0 15px 40px rgba(15, 30, 43, 0.4);
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 60px;
  width: auto;
  margin-right: 1rem;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  text-shadow: 0 2px 4px rgba(15, 30, 43, 0.3);
}

.navbar-nav .nav-link {
  color: var(--light-gray);
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: 25px;
  transition: all var(--transition-fast);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient-complementary);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: rgba(174, 221, 104, 0.2);
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(45, 58, 31, 0.3);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 20px;
}

/* Welcome Section - More Spacious */
.welcome-section {
  background: radial-gradient(circle at 15% 25%, rgba(174, 221, 104, 0.2) 0%, transparent 60%),
              radial-gradient(circle at 85% 20%, rgba(138, 104, 221, 0.2) 0%, transparent 55%),
              radial-gradient(circle at 50% 80%, rgba(104, 188, 221, 0.15) 0%, transparent 50%),
              var(--cream);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.welcome-section::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(138, 104, 221, 0.15);
  border-radius: 50%;
  bottom: -140px;
  left: 10%;
  filter: blur(20px);
}

.min-vh-75 {
  min-height: 80vh;
}

/* Welcome Text */
.welcome-text {
  padding-right: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.welcome-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.05;
  color: var(--dark-charcoal);
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.welcome-subtitle {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--smoke-gray);
  margin-bottom: 50px;
  font-weight: 400;
  max-width: 480px;
}

.welcome-cta {
  margin-top: 20px;
}

.welcome-cta .btn {
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(174, 221, 104, 0.22);
}

.welcome-cta .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(138, 104, 221, 0.28);
}

/* Welcome Visual */
.welcome-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2rem;
}

.highlight-box {
  background: var(--white);
  border-radius: 28px;
  padding: 56px 48px;
  box-shadow: 0 28px 65px rgba(45, 58, 31, 0.12);
  border: 1px solid rgba(174, 221, 104, 0.08);
  max-width: 450px;
  width: 100%;
  position: relative;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(174, 221, 104, 0.5), rgba(138, 104, 221, 0.45));
  border-radius: 30px;
  z-index: -1;
  opacity: 0.35;
  filter: blur(12px);
}

.highlight-item {
  display: flex;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px dashed rgba(63, 58, 95, 0.12);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateX(8px);
}

.highlight-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.highlight-item:first-child {
  padding-top: 0;
}

.highlight-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  flex-shrink: 0;
  box-shadow: 0 15px 35px rgba(174, 221, 104, 0.3);
  border: 2px solid var(--white);
}

.highlight-icon i {
  color: white;
  font-size: 1.8rem;
}

.highlight-text h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-charcoal);
  margin-bottom: 8px;
  margin-top: 0;
  line-height: 1.2;
}

.highlight-text span {
  font-size: 1rem;
  color: var(--smoke-gray);
  line-height: 1.4;
}

/* Specialties Section - More Spacious */
.specialties-section {
  background: radial-gradient(circle at 20% 25%, rgba(174, 221, 104, 0.25), transparent 70%),
              radial-gradient(circle at 80% 30%, rgba(138, 104, 221, 0.2), transparent 65%),
              radial-gradient(circle at 50% 70%, rgba(104, 188, 221, 0.15), transparent 60%),
              var(--cream);
  color: var(--smoke-gray);
  position: relative;
  overflow: hidden;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-charcoal);
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.section-description {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--smoke-gray);
  margin: 0 auto;
  max-width: 450px;
  font-weight: 400;
  text-align: center;
}

.specialty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin-top: 20px;
}

.specialty-item {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 25px;
  box-shadow: 0 26px 60px rgba(45, 58, 31, 0.12);
  border: 1px solid rgba(174, 221, 104, 0.08);
  transition: all 0.4s ease;
  text-align: center !important;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.specialty-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.specialty-item:hover::before {
  transform: scaleX(1);
}

.specialty-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 80px rgba(15, 30, 43, 0.18);
}

.specialty-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 16px 32px rgba(174, 221, 104, 0.25);
  transition: all 0.3s ease;
}

.specialty-item:hover .specialty-icon {
  transform: scale(1.1) rotate(5deg);
}

.specialty-icon i {
  color: white;
  font-size: 2rem;
}

.specialty-item h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-charcoal);
  margin: 0 auto;
  line-height: 1.3;
  letter-spacing: -0.5px;
  text-align: center !important;
  max-width: 100%;
  display: block;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Responsive Updates */
@media (max-width: 768px) {
  .welcome-section, .specialties-section {
    padding: 80px 0;
  }
  
  .satisfaction-divider {
    padding: 50px 0;
  }
  
  .min-vh-75 {
    min-height: auto;
  }
  
  .welcome-text {
    padding-right: 0;
    padding-top: 0;
    margin-bottom: 60px;
    text-align: center;
  }
  
  .welcome-title {
    font-size: 3rem;
    margin-bottom: 30px;
  }
  
  .welcome-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 100%;
  }
  
  .welcome-visual {
    padding: 1rem;
  }
  
  .highlight-box {
    padding: 40px 30px;
  }
  
  .highlight-item {
    padding: 25px 0;
  }
  
  .highlight-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }
  
  .highlight-icon i {
    font-size: 1.5rem;
  }
  
  .highlight-text h5 {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
  
  .section-description {
    font-size: 1.1rem;
    max-width: 100%;
  }
  
  .specialty-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }
  
  .specialty-item {
    padding: 40px 25px;
  }
  
  .specialty-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
  }
  
  .specialty-icon i {
    font-size: 1.7rem;
  }
  
  .specialty-item h5 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .welcome-title {
    font-size: 2.5rem;
  }
  
  .welcome-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .highlight-box {
    padding: 35px 25px;
  }
  
  .specialty-item {
    padding: 35px 20px;
  }
}

/* Stats Section */

.stats-section {
  background: linear-gradient(135deg, rgba(74, 90, 60, 0.95), rgba(138, 104, 221, 0.9));
  color: white;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before,
.stats-section::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(174, 221, 104, 0.2);
  z-index: 0;
}

.stats-section::before {
  top: -140px;
  left: -100px;
}

.stats-section::after {
  bottom: -160px;
  right: -110px;
  background: rgba(104, 188, 221, 0.15);
}

.stats-container {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  padding: 60px 40px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 20px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(174, 221, 104, 0.2);
  z-index: -1;
  filter: blur(0);
  animation: bubbleFloat 16s ease-in-out infinite;
}

.hero-section::before {
  width: 380px;
  height: 380px;
  top: -160px;
  right: -120px;
  animation-delay: 0s;
}

.hero-section::after {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: -80px;
  background: rgba(138, 104, 221, 0.25);
  animation-delay: 4s;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=2069&q=80') center/cover no-repeat;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: var(--gradient-overlay); */ /* Grüner Overlay auskommentiert - wieder einschalten wenn gewünscht */
  z-index: -1;
}

.hero-content {
  color: var(--white);
  z-index: 10;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bubbles span {
  position: absolute;
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 30px 30px 12px 30px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: bubbleFloat 12s ease-in-out infinite;
}

.hero-bubbles .bubble-1 { top: 20%; left: 12%; animation-delay: 0s; }
.hero-bubbles .bubble-2 { top: 60%; left: 20%; width: 90px; height: 90px; animation-delay: 3s; background: rgba(138, 104, 221, 0.18); }
.hero-bubbles .bubble-3 { top: 35%; right: 18%; width: 60px; height: 60px; animation-delay: 6s; background: rgba(174, 221, 104, 0.2); }
.hero-bubbles .bubble-4 { bottom: 18%; right: 8%; width: 100px; height: 100px; animation-delay: 1.5s; background: rgba(255, 233, 133, 0.18); }

.hero-stats {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
  position: relative;
  z-index: 5;
}

.hero-stats .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--highlight-color);
}

.hero-stats .stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  position: relative;
  z-index: 5;
}

.hero-image-container {
  position: relative;
  height: 500px;
  z-index: 1;
}

.floating-card {
  position: absolute;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(174, 221, 104, 0.1));
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(174, 221, 104, 0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 6s ease-in-out infinite, softGlow 4s ease-in-out infinite alternate;
  z-index: 5;
  min-width: 200px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(138, 104, 221, 0.3);
}

.floating-card i {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.floating-card span {
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap;
}

.card-1 {
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 45%;
  right: 5%;
  animation-delay: 2s;
}

.card-3 {
  top: 75%;
  right: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes bubbleFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(12px, -18px) rotate(3deg); }
  50% { transform: translate(-8px, -26px) rotate(-4deg); }
  75% { transform: translate(16px, -10px) rotate(2deg); }
}

@keyframes wiggle {
  0%, 100% { transform: translateY(-3px) scale(1.05) rotate(0deg); }
  25% { transform: translateY(-3px) scale(1.05) rotate(1deg); }
  75% { transform: translateY(-3px) scale(1.05) rotate(-1deg); }
}

@keyframes bounce-in {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes softGlow {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(174, 221, 104, 0.3), 0 0 40px rgba(138, 104, 221, 0.2);
  }
  50% { 
    box-shadow: 0 0 30px rgba(174, 221, 104, 0.4), 0 0 60px rgba(138, 104, 221, 0.3);
  }
}

@keyframes pastelPulse {
  0%, 100% { 
    background-color: rgba(174, 221, 104, 0.1);
    border-color: var(--primary-color);
  }
  50% { 
    background-color: rgba(138, 104, 221, 0.1);
    border-color: var(--accent-color);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--secondary-color);
  animation: bounce 2s infinite, pastelPulse 3s ease-in-out infinite;
  z-index: 10;
  text-shadow: 0 2px 4px rgba(45, 74, 50, 0.4);
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--white);
  border-radius: 12px;
  margin: 0 auto 0.5rem;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Specialties Section */
.specialties-section {
  padding: var(--section-padding);
  background: var(--light-gray);
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.specialty-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
  border: 2px solid rgba(174, 221, 104, 0.1);
  cursor: pointer;
}

.specialty-item:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(174, 221, 104, 0.15);
  border-color: rgba(138, 104, 221, 0.3);
}

.specialty-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
  transition: all var(--transition-fast);
}

.specialty-item:hover .specialty-icon {
  transform: scale(1.1) rotate(10deg);
  animation: bounce-in 0.6s ease-out;
}

.specialty-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.specialty-item p {
  color: var(--smoke-gray);
  font-size: 0.95rem;
}

/* Menu Preview Section */
.menu-preview-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, rgba(74, 90, 60, 0.95), rgba(138, 104, 221, 0.85));
  position: relative;
  overflow: hidden;
}

.menu-preview-section::before,
.menu-preview-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(174, 221, 104, 0.2);
  z-index: 0;
}

.menu-preview-section::before {
  width: 320px;
  height: 320px;
  top: -140px;
  right: -80px;
}

.menu-preview-section::after {
  width: 280px;
  height: 280px;
  bottom: -140px;
  left: -80px;
  background: rgba(104, 188, 221, 0.25);
}

.menu-preview-section .container {
  position: relative;
  z-index: 1;
}

.menu-card {
  height: 300px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box,
              var(--gradient-spring) border-box;
  transition: all 0.4s ease;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.menu-card:hover {
  transform: translateY(-12px) scale(1.05) rotate(2deg);
  box-shadow: 0 35px 70px rgba(174, 221, 104, 0.3), 0 0 40px rgba(138, 104, 221, 0.2);
  animation: wiggle 0.8s ease-in-out, softGlow 2s ease-in-out infinite alternate;
}

.menu-card-image {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  color: var(--white);
}

.menu-card:nth-child(1) .menu-card-image {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), 
                    url('https://images.unsplash.com/photo-1574484284002-952d92456975?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.menu-card:nth-child(2) .menu-card-image {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), 
                    url('https://images.unsplash.com/photo-1529042410759-befb1204b468?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.menu-card:nth-child(3) .menu-card-image {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), 
                    url('https://images.unsplash.com/photo-1544025162-d76694265947?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.menu-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(174, 221, 104, 0.82), rgba(138, 104, 221, 0.82));
  opacity: 0;
  transition: all var(--transition-fast);
}

.menu-card:hover .menu-card-overlay {
  opacity: 1;
}

.menu-card-badge {
  background: var(--highlight-color);
  color: var(--dark-charcoal);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-card h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  z-index: 2;
  position: relative;
}

.menu-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  z-index: 2;
  position: relative;
}

.menu-card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--highlight-color);
  z-index: 2;
  position: relative;
}

/* Reviews Section */
.reviews-section {
  padding: var(--section-padding);
  background: var(--white);
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(174, 221, 104, 0.1);
  height: 100%;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '★';
  position: absolute;
  top: -15px;
  right: 10px;
  font-size: 4rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  transform: rotate(20deg);
}

.review-card:hover {
  transform: translateY(-10px) rotate(1.5deg);
  box-shadow: 0 25px 50px rgba(174, 221, 104, 0.2);
  border-color: rgba(138, 104, 221, 0.4);
}

.review-stars {
  color: var(--highlight-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.review-card blockquote {
  font-style: italic;
  color: var(--smoke-gray);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-author strong {
  color: var(--charcoal);
  font-weight: 600;
}

.review-author span {
  color: var(--smoke-gray);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, rgba(74, 90, 60, 0.9), rgba(138, 104, 221, 0.95));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at right, rgba(174, 221, 104, 0.4), transparent 65%);
  z-index: -1;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.cta-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* About Page Hero */
.about-hero {
  position: relative;
}

.about-hero .section-badge.bg-white {
  background: white !important;
  color: var(--dark-charcoal) !important;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
}

/* About Story Cards */
.about-story-card {
  background: transparent;
}

.highlight-box {
  transition: transform var(--transition-fast);
}

.highlight-box:hover {
  transform: translateX(10px);
}

/* Milestone Cards */
.milestone-card {
  transition: all var(--transition-smooth);
  border: 2px solid transparent;
}

.milestone-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(174, 221, 104, 0.3);
  background: white !important;
}

.milestone-year {
  transition: all var(--transition-fast);
}

.milestone-card:hover .milestone-year {
  transform: scale(1.1);
}

/* Feature Cards */
.feature-card {
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(174, 221, 104, 0.3);
  border-color: var(--secondary-color) !important;
}

.feature-card i {
  display: block;
}

/* Image Gallery Effects */
.image-gallery img,
.image-collection img {
  transition: all var(--transition-smooth);
}

.image-gallery img:hover,
.image-collection img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Capacity Box */
.capacity-box {
  position: relative;
  overflow: hidden;
}

.capacity-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  animation: dreamyRotate 30s linear infinite;
}

/* Event Info Box */
.event-info {
  border-left: 4px solid var(--primary-color);
  transition: all var(--transition-fast);
}

.event-info:hover {
  transform: translateX(10px);
  box-shadow: -5px 5px 15px rgba(174, 221, 104, 0.2);
}

/* Cuisine Cards */
.cuisine-card {
  transition: all var(--transition-smooth);
}

.cuisine-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(174, 221, 104, 0.2);
}

.cuisine-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(174, 221, 104, 0.2);
}

.cuisine-card ul li:last-child {
  border-bottom: none;
}

/* Hover Zoom Effect for Food Images */
.hover-zoom {
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.hover-zoom:hover {
  transform: scale(1.1);
}

/* Food Cards with Overlay */
.food-card {
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.food-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(174, 221, 104, 0.4);
}

.food-card .food-overlay {
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.food-card:hover .food-overlay {
  opacity: 1;
}

.food-card img {
  transition: transform var(--transition-smooth);
}

.food-card:hover img {
  transform: scale(1.15);
}

/* Badge Large */
.badge-lg {
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  cursor: default;
}

.badge-lg:hover {
  transform: scale(1.05);
}

/* American Section */
.american-section {
  transition: all var(--transition-smooth);
}

.american-section:hover {
  box-shadow: 0 25px 50px rgba(174, 221, 104, 0.3);
}

.american-gallery img {
  transition: all var(--transition-smooth);
}

.american-gallery img:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 15px 35px rgba(231, 76, 60, 0.3);
}

.american-features .feature-item {
  transition: all var(--transition-fast);
}

.american-features .feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(174, 221, 104, 0.3);
}

/* Info Badge Group */
.info-badge {
  transition: all var(--transition-fast);
  font-size: 0.95rem;
}

.info-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(174, 221, 104, 0.3);
}

/* Event Showcase */
.event-showcase {
  position: relative;
  overflow: hidden;
}

.event-showcase::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: dreamyFloat 20s ease-in-out infinite;
}

.event-type {
  transition: all var(--transition-fast);
}

.event-type:hover {
  transform: scale(1.1);
}

/* Main Room Gallery */
.main-room-gallery img {
  transition: all var(--transition-smooth);
}

.main-room-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Modern Gallery Cards */
.modern-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-smooth);
  cursor: pointer;
  height: 300px;
}

.modern-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.modern-gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(174, 221, 104, 0.4);
}

.modern-gallery-card:hover img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: white;
  padding: 2rem 1.5rem;
  transform: translateY(100%);
  transition: transform var(--transition-smooth);
}

.modern-gallery-card:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-info h5 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.gallery-info p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Gallery Filter Bar */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(174, 221, 104, 0.2);
}

.gallery-filter-btn {
  background: white;
  border: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  color: var(--dark-charcoal);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.gallery-filter-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(174, 221, 104, 0.3);
}

.gallery-filter-btn.active {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-color: transparent;
}

.gallery-filter-btn i {
  margin-right: 0.5rem;
}

/* Gallery Item Animation */
.gallery-item {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Press Articles Section */
.press-articles {
  background: linear-gradient(to bottom, var(--light-gray) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.press-articles::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(174, 221, 104, 0.15), transparent);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: dreamyFloat 20s ease-in-out infinite;
}

.press-card {
  transition: all var(--transition-smooth);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}

.press-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(174, 221, 104, 0.3), 0 10px 20px rgba(138, 104, 221, 0.2);
}

.press-card .card-img-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--light-gray);
  max-height: 500px;
}

.press-card .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-smooth);
}

.press-card:hover .card-img-top {
  transform: scale(1.05);
}

.press-card .carousel-item img {
  max-height: 500px;
  width: 100%;
  object-fit: contain;
}

.press-card .badge.bg-gradient {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
}

.press-card .card-title {
  color: var(--dark-charcoal);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.press-card .card-text {
  line-height: 1.7;
  font-size: 1rem;
}

.press-card .btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.press-card .btn-outline-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  transform: translateX(5px);
}

/* Modal Carousel Styling */
#articleModal .modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: var(--shadow-xl);
}

#articleModal .modal-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-bottom: none;
  padding: 1.5rem;
}

#articleModal .modal-title {
  font-weight: 700;
  font-size: 1.5rem;
}

#articleModal .btn-close {
  filter: brightness(0) invert(1);
}

#articleModal .carousel-item img {
  border-radius: 8px;
  max-height: 80vh;
  width: 100%;
  object-fit: contain;
}

/* Carousel Controls Styling */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-indicators button {
  background-color: var(--primary-color);
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}

.carousel-indicators button.active {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .press-card .card-img-wrapper {
    max-height: 400px;
  }
  
  .press-card .card-title {
    font-size: 1.25rem;
  }
  
  .press-card .card-text {
    font-size: 0.95rem;
  }
}

/* Footer */
.footer {
  background: var(--gradient-dark);
  color: var(--light-gray);
  position: relative;
  overflow: hidden;
  padding: 4rem 0 2rem;
}

.footer::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(174, 221, 104, 0.2);
  z-index: 0;
  animation: dreamyRotate 40s linear infinite;
}

.footer::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  left: -50px;
  bottom: -50px;
  border-radius: 50%;
  background: rgba(138, 104, 221, 0.15);
  z-index: 0;
  animation: dreamyRotate 30s linear infinite reverse;
}

.footer > .container {
  position: relative;
  z-index: 1;
}

.footer-brand {
  text-align: left;
}

.footer-logo {
  height: 80px;
  width: auto;
}

.footer-title {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-top: 0.1rem;
}

.contact-item a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-item a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition-fast);
  font-size: 1.25rem;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.newsletter-form .input-group {
  max-width: 300px;
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 25px 0 0 25px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .btn-cta {
  border-radius: 0 25px 25px 0;
  padding: 0.75rem 1.5rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .specialty-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-stats {
    margin-bottom: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .floating-card {
    display: none; /* Hide floating cards on mobile to prevent overlap */
  }
  
  .hero-image-container {
    height: 300px; /* Reduce height on mobile */
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .menu-card {
    height: 250px;
  }
  
  .specialty-item {
    padding: 1.5rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
}

/* Menu PDF Download Layout */
.menu-download-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(45, 90, 61, 0.08);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.menu-download-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.menu-download-card .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-download-card .btn {
  border-radius: 50px;
}

.menu-download-card .btn-outline-dark {
  border-width: 2px;
  color: var(--dark-charcoal);
}

.menu-download-card .btn-outline-dark:hover {
  background: var(--dark-charcoal);
  color: var(--white);
}

.menu-info-box {
  background: linear-gradient(135deg, rgba(45, 90, 61, 0.08), rgba(44, 95, 126, 0.05));
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(45, 90, 61, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.menu-info-box .btn {
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
}

@media (max-width: 768px) {
  .menu-info-box {
    text-align: center;
  }

  .menu-info-box .btn {
    width: 100%;
  }
}

/* Modern Menu Dish Cards */
.menu-section .menu-card {
  background: var(--white);
  border: none;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-fast);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.menu-section .menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.menu-section .menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.dish-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-charcoal);
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

.dish-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dish-price::before {
  content: '€';
  font-size: 1.2rem;
  opacity: 0.7;
}

.dish-description {
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.dish-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.dish-tag {
  padding: 0.4rem 0.8rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
}

.dish-tag i {
  font-size: 0.9rem;
  margin-right: 0.1rem;
}

.dish-tag:hover {
  transform: scale(1.05);
}

.tag-vegetarian {
  background: linear-gradient(135deg, var(--light-gray), var(--highlight-color));
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.tag-vegan {
  background: linear-gradient(135deg, var(--highlight-color), var(--accent-color));
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.tag-spicy {
  background: linear-gradient(135deg, var(--warning-color), var(--accent-color));
  color: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.tag-house-special {
  background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
  color: var(--success-color);
  border-color: var(--success-color);
}

/* Menu Section Styling */
.menu-section {
  margin-bottom: 4rem;
}

/* Modern Filter Section */
.filter-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 25px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.filter-group {
  margin-bottom: 2rem;
}

.filter-title {
  font-weight: 700;
  color: var(--dark-charcoal);
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-pill {
  background: var(--white);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
}

.filter-pill:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.filter-pill.active {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.category-card {
  background: var(--white);
  border: 2px solid #e9ecef;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.category-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-card.active {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.category-card i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.category-card span {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Search Section */
.search-section {
  margin-bottom: 2rem;
}

.search-wrapper {
  position: relative;
}

.search-input {
  border-radius: 25px;
  border: 2px solid #e9ecef;
  padding: 1rem 1rem 1rem 3.5rem;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(45, 90, 61, 0.25);
}

.search-icon {
  background: transparent;
  border: none;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Responsive Image Utilities */
.resp-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.img-ra-16x9 { aspect-ratio: 16 / 9; }
.img-ra-4x3 { aspect-ratio: 4 / 3; }
.img-fixed-sm { max-height: 180px; }
.img-fixed-md { max-height: px; }

.about-card {
  display: flex;
  flex-direction: column;
}
.about-card figure { overflow: hidden; border-radius: 0.5rem; }
.about-card .about-card-body { flex: 1 1 auto; display:flex; flex-direction:column; }

@media (min-width: 992px) {
  .about-equal-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .about-equal-row > .about-card { height: 100%; }
}

/* Compact spacing variant */
.about-compact p { line-height: 1.45; }

/* About auto grid refinements */
.about-auto-grid { display:grid; gap:1.5rem; }
@media (min-width: 992px){
  .about-auto-grid { grid-template-columns: repeat(2,minmax(0,1fr)); align-items:start; }
}
.about-card { display:flex; flex-direction:column; position:relative; }
.about-card figure { margin:0 0 1rem 0; position:relative; width:100%; }
.about-card figure.auto-crop { aspect-ratio: 4/3; overflow:hidden; border-radius:0.5rem; }
.about-card figure.auto-crop img { width:100%; height:100%; object-fit:cover; object-position:50% 50%; display:block; }
.about-card.compact p { line-height:1.45; }
.about-features { display:grid; grid-template-columns:repeat(auto-fit,minmax(140px,1fr)); gap:.75rem; }
.about-features .feature-box { background:#fff; border-radius:.75rem; padding:.85rem .9rem; box-shadow:0 2px 6px rgba(0,0,0,.06); }
.about-features .feature-box h6 { font-size:.8rem; margin:0 0 .25rem; }
/* End about auto grid */

/* About two-column staggered layout */
.about-columns { display:flex; flex-direction:column; gap:1.5rem; }
.about-col { display:flex; flex-direction:column; gap:1.5rem; }
@media (min-width: 992px){
  .about-columns { flex-direction:row; align-items:flex-start; }
  .about-col { flex:1 1 0; }
}
/* End two-column staggered layout */

/* =============================
   Galerie Styles
   ============================= */
.gallery-intro {
  max-width: 780px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: var(--smoke-gray);
}

.masonry-grid {
  column-count: 1;
  column-gap: 1.25rem;
}
@media (min-width: 576px) { .masonry-grid { column-count: 2; } }
@media (min-width: 992px) { .masonry-grid { column-count: 3; } }
@media (min-width: 1400px){ .masonry-grid { column-count: 4; } }

.masonry-item { break-inside: avoid; margin-bottom: 1.25rem; position: relative; }

.gallery-card { position:relative; overflow:hidden; border-radius:1rem; box-shadow:0 8px 20px rgba(0,0,0,.12); background:#000; }
.gallery-card img { width:100%; height:100%; display:block; object-fit:cover; transition:transform .8s ease, filter .6s ease; }
.gallery-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(0,0,0,0) 40%, rgba(0,0,0,.55) 100%); opacity:0; transition:opacity .5s ease; }
.gallery-meta { position:absolute; left:0; right:0; bottom:0; padding:1rem 1.1rem 1.05rem; z-index:2; color:#fff; display:flex; flex-direction:column; gap:.25rem; opacity:0; transform:translateY(10px); transition:all .45s ease; }
.gallery-meta h6 { margin:0; font-size:.9rem; font-weight:600; letter-spacing:.5px; text-transform:uppercase; color:var(--highlight-color); }
.gallery-meta span { font-size:.75rem; opacity:.85; }
.gallery-fav { position:absolute; top:.65rem; right:.65rem; z-index:3; background:rgba(0,0,0,.4); backdrop-filter:blur(4px); width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; cursor:pointer; transition:all .35s ease; }
.gallery-fav:hover { background:rgba(0,0,0,.65); transform:scale(1.07); }
.gallery-fav.active { color:var(--highlight-color); }
.gallery-card:hover img { transform:scale(1.08); filter:brightness(.9); }
.gallery-card:hover::after { opacity:1; }
.gallery-card:hover .gallery-meta { opacity:1; transform:translateY(0); }

/* Filter Bar */
.gallery-filter-bar { display:flex; flex-wrap:wrap; gap:.65rem; justify-content:center; margin-bottom:2.2rem; }
.gallery-filter-btn { border:2px solid var(--primary-color); background:#fff; color:var(--primary-color); padding:.55rem 1.15rem; border-radius:2rem; font-size:.85rem; font-weight:600; letter-spacing:.5px; cursor:pointer; transition:all .3s ease; display:inline-flex; align-items:center; gap:.4rem; }
.gallery-filter-btn:hover { background:var(--primary-color); color:#fff; }
.gallery-filter-btn.active { background:var(--primary-color); color:#fff; box-shadow:0 4px 14px rgba(27, 58, 82, .28); }

/* Lightbox Overlay */
.lightbox-overlay { position:fixed; inset:0; background:rgba(0,0,0,.9); display:flex; align-items:center; justify-content:center; z-index:1100; opacity:0; pointer-events:none; transition:opacity .35s ease; }
.lightbox-overlay.active { opacity:1; pointer-events:auto; }
.lightbox-content { max-width:85vw; max-height:80vh; position:relative; display:flex; flex-direction:column; }
.lightbox-img-wrapper { position:relative; flex:1 1 auto; display:flex; align-items:center; justify-content:center; }
.lightbox-img-wrapper img { max-width:100%; max-height:80vh; object-fit:contain; border-radius:.75rem; box-shadow:0 10px 35px rgba(0,0,0,.5); }
.lightbox-close, .lightbox-prev, .lightbox-next { position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,.12); color:#fff; border:none; width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.45rem; cursor:pointer; backdrop-filter:blur(6px); transition:all .35s ease; }
.lightbox-close { top: -70px; right:0; transform:none; }
.lightbox-prev { left:-70px; }
.lightbox-next { right:-70px; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background:rgba(255,255,255,.25); }
@media (max-width: 992px){ .lightbox-prev { left:10px; } .lightbox-next { right:10px; } .lightbox-close { top:15px; } }

/* Subtle entrance animation */
.gallery-card { animation: galleryFadeIn .7s ease both; }
@keyframes galleryFadeIn { from { opacity:0; transform:translateY(15px);} to { opacity:1; transform:translateY(0);} }

/* Accessibility focus */
.gallery-filter-btn:focus-visible, .gallery-fav:focus-visible, .lightbox-close:focus-visible, .lightbox-prev:focus-visible, .lightbox-next:focus-visible { outline:3px solid var(--highlight-color); outline-offset:3px; }

/* ✨ MAGICAL PASTEL GREEN DECORATIVE ELEMENTS ✨ */

/* Floating Pastel Particles */
.pastel-decoration {
  position: fixed;
  pointer-events: none;
  z-index: 1;
}

.pastel-particle {
  position: absolute;
  border-radius: 50%;
  animation: floatingParticles 12s linear infinite;
  opacity: 0.6;
}

.pastel-particle:nth-child(1) {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  left: 10%;
  animation-delay: 0s;
  animation-duration: 15s;
}

.pastel-particle:nth-child(2) {
  width: 12px;
  height: 12px;
  background: var(--accent-color);
  left: 30%;
  animation-delay: 2s;
  animation-duration: 18s;
}

.pastel-particle:nth-child(3) {
  width: 6px;
  height: 6px;
  background: var(--highlight-color);
  left: 60%;
  animation-delay: 4s;
  animation-duration: 20s;
}

.pastel-particle:nth-child(4) {
  width: 10px;
  height: 10px;
  background: var(--tertiary-color);
  left: 80%;
  animation-delay: 6s;
  animation-duration: 16s;
}

.pastel-particle:nth-child(5) {
  width: 14px;
  height: 14px;
  background: var(--secondary-color);
  left: 20%;
  animation-delay: 8s;
  animation-duration: 22s;
}

.pastel-particle:nth-child(6) {
  width: 7px;
  height: 7px;
  background: var(--warning-color);
  left: 70%;
  animation-delay: 10s;
  animation-duration: 17s;
}

@keyframes floatingParticles {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Dreamy Section Backgrounds */
.section-dreamy {
  background: var(--gradient-fairy);
  position: relative;
  overflow: hidden;
}

.section-dreamy::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--gradient-dreamy);
  animation: dreamyRotate 30s linear infinite;
  opacity: 0.3;
  z-index: 0;
}

@keyframes dreamyRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Elegante Waldgrün Button Enhancements */
.btn-pastel {
  background: var(--gradient-spring);
  background-size: 400% 400%;
  animation: gradientShift 6s ease infinite;
  border: none;
  color: var(--cream);
  text-shadow: 1px 1px 2px rgba(15, 30, 43, 0.3);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
  border: 2px solid rgba(200, 168, 130, 0.3);
}

.btn-pastel:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(27, 58, 82, 0.4), 0 5px 15px rgba(200, 168, 130, 0.3);
  animation-duration: 2s;
  color: var(--cream);
  border-color: rgba(200, 168, 130, 0.6);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Green Nature Effects */
@keyframes leafSway {
  0%, 100% { transform: rotate(-2deg) translateX(-5px); }
  50% { transform: rotate(2deg) translateX(5px); }
}

@keyframes mintBreeze {
  0%, 100% { 
    background: rgba(27, 58, 82, 0.1);
    transform: scale(1);
  }
  33% { 
    background: rgba(200, 168, 130, 0.12);
    transform: scale(1.01);
  }
  66% { 
    background: rgba(139, 115, 85, 0.1);
    transform: scale(1.02);
  }
}

/* Eleganter Waldgrün-Glow Text Effect */
.green-glow-text {
  color: var(--primary-color);
  text-shadow: 
    0 0 5px rgba(27, 58, 82, 0.4),
    0 0 10px rgba(200, 168, 130, 0.3),
    0 0 15px rgba(139, 115, 85, 0.2);
  animation: mintBreeze 3s ease-in-out infinite;
}

/* Elegante Text-Effekte */
.pastel-text {
  background: var(--gradient-spring);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
}

/* Elegante Grün-Akzente */
.vibrant-green {
  color: var(--primary-color);
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(27, 58, 82, 0.2);
}

/* Fade-In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
