/* ========================================
   KüchenWelten - Playful Dynamic CSS
   Design Style: Bright, Animated, Fun
======================================== */

/* CSS Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #2D3142;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2D3142;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 36px;
  color: #C85A3F;
}

h3 {
  font-size: 28px;
  color: #2D5F4E;
}

p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #4A5568;
}

a {
  color: #C85A3F;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #A03C24;
  transform: translateY(-2px);
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 12px;
  font-size: 18px;
  color: #4A5568;
}

strong {
  color: #2D3142;
  font-weight: 600;
}

blockquote {
  border-left: 5px solid #C85A3F;
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  font-size: 20px;
  color: #2D5F4E;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Header */
header {
  background: linear-gradient(135deg, #FFFFFF 0%, #F4E4D7 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(200, 90, 63, 0.1);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1) rotate(-3deg);
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.main-nav a {
  font-size: 16px;
  font-weight: 600;
  color: #2D5F4E;
  padding: 8px 16px;
  border-radius: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.main-nav a:hover::before {
  left: 100%;
}

.main-nav a:hover {
  background: #C85A3F;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background: #C85A3F;
  color: #FFFFFF;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(200, 90, 63, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #A03C24;
  transform: scale(1.1) rotate(90deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #C85A3F 0%, #A03C24 100%);
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  transform: translateX(50px);
  opacity: 0;
  animation: slideInNav 0.5s ease forwards;
}

.mobile-nav a:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav a:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav a:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav a:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav a:nth-child(5) { animation-delay: 0.5s; }
.mobile-nav a:nth-child(6) { animation-delay: 0.6s; }
.mobile-nav a:nth-child(7) { animation-delay: 0.7s; }

@keyframes slideInNav {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(8px);
}

/* Hero Sections */
.hero, .hero-404, .thank-you-hero {
  background: linear-gradient(135deg, #FFD93D 0%, #FF6B9D 50%, #C85A3F 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

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

.hero h1, .hero-404 h1, .thank-you-hero h1 {
  color: #FFFFFF;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.tagline {
  font-size: 22px;
  color: #FFFFFF;
  max-width: 800px;
  margin: 0 auto 32px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Error 404 Specific */
.error-code {
  font-size: 120px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.3);
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
  animation: pulse 2s ease-in-out infinite;
}

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

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before, .btn-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B9D 0%, #C85A3F 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(200, 90, 63, 0.4);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(200, 90, 63, 0.6);
}

.btn-secondary {
  background: #FFFFFF;
  color: #C85A3F;
  border: 3px solid #C85A3F;
  box-shadow: 0 6px 15px rgba(200, 90, 63, 0.2);
}

.btn-secondary:hover {
  background: #C85A3F;
  color: #FFFFFF;
  transform: translateY(-4px) rotate(-2deg);
  box-shadow: 0 12px 25px rgba(200, 90, 63, 0.4);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
  position: relative;
  z-index: 1;
}

.button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

/* Sections */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Trust Indicators */
.trust-badge, .trust-indicators, .response-time, .trial, .guarantee, .country-counter, .tip-counter {
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 24px;
  border-radius: 30px;
  display: inline-block;
  font-weight: 600;
  color: #C85A3F;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 16px;
  position: relative;
  z-index: 1;
  animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(2deg);
  }
}

/* Feature Grids */
.features-grid, .service-grid, .category-grid, .recipe-grid, .cuisine-grid, .style-grid, .link-grid, .contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 32px 0;
}

.feature, .service-card, .category-item, .recipe-card, .cuisine-card, .style-card, .link-card, .contact-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F4E4D7 100%);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 8px 25px rgba(200, 90, 63, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.feature::before, .service-card::before, .category-item::before, .recipe-card::before, .cuisine-card::before, .style-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.feature:hover, .service-card:hover, .category-item:hover, .recipe-card:hover, .cuisine-card:hover, .style-card:hover, .link-card:hover, .contact-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(200, 90, 63, 0.3);
}

.feature:hover::before, .service-card:hover::before, .category-item:hover::before, .recipe-card:hover::before, .cuisine-card:hover::before, .style-card:hover::before {
  top: -20%;
  right: -20%;
  width: 250px;
  height: 250px;
}

.feature h3, .service-card h3, .category-item, .recipe-card h3, .cuisine-card h3, .style-card {
  color: #2D5F4E;
  margin-bottom: 16px;
  font-size: 22px;
}

.price {
  font-size: 32px;
  font-weight: 900;
  color: #C85A3F;
  margin: 20px 0;
  text-shadow: 2px 2px 4px rgba(200, 90, 63, 0.2);
}

/* Service Boxes */
.service-box {
  background: linear-gradient(135deg, #FFFFFF 0%, #F4E4D7 100%);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(200, 90, 63, 0.2);
  margin-bottom: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-box::after {
  content: '🍳';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
  opacity: 0.1;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.service-box:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 45px rgba(200, 90, 63, 0.3);
}

/* Steps & Lists */
.steps, .steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.step, .step-item {
  background: linear-gradient(90deg, #FFD93D 0%, #FF6B9D 100%);
  padding: 24px;
  border-radius: 16px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.3);
  position: relative;
  padding-left: 60px;
  transition: all 0.3s ease;
}

.step::before, .step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: #FFFFFF;
  color: #C85A3F;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
}

.steps {
  counter-reset: step-counter;
}

.step:hover, .step-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

/* Techniques & Tips Lists */
.principles-list, .techniques-list, .tips-list, .technique-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.principle-item, .technique-item, .tip-item {
  background: #FFFFFF;
  padding: 20px 20px 20px 60px;
  border-radius: 16px;
  border-left: 6px solid #C85A3F;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-size: 18px;
  color: #2D3142;
  position: relative;
  transition: all 0.3s ease;
}

.principle-item::before, .technique-item::before, .tip-item::before {
  content: '✨';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
}

.principle-item:hover, .technique-item:hover, .tip-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(200, 90, 63, 0.2);
  border-left-color: #FF6B9D;
}

/* Country Lists */
.country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}

.country-list span {
  background: linear-gradient(135deg, #FFD93D 0%, #FF6B9D 100%);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.country-list span:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 107, 157, 0.5);
}

/* Continent Grid */
.continent-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.continent-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: linear-gradient(135deg, #2D5F4E 0%, #1E3A2F 100%);
  color: #FFFFFF;
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(45, 95, 78, 0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.continent-card::before {
  content: '🌍';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 100px;
  opacity: 0.1;
}

.continent-card:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 15px 40px rgba(45, 95, 78, 0.6);
}

/* Level Sections */
.level-section {
  background: linear-gradient(90deg, #F4E4D7 0%, #FFFFFF 100%);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  border-left: 8px solid #C85A3F;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.level-section:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(200, 90, 63, 0.2);
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #F4E4D7 0%, #FFE8CC 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
  transition: all 0.3s ease;
  flex-wrap: wrap;
}

.testimonial-card p {
  font-style: italic;
  font-size: 18px;
  color: #2D3142;
  flex: 1;
  min-width: 250px;
}

.testimonial-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(200, 90, 63, 0.2);
}

/* CTA Sections */
.cta-subscription, .cta-consultation, .cta-worldbox, .masterclass-offer {
  background: linear-gradient(135deg, #C85A3F 0%, #FF6B9D 100%);
  color: #FFFFFF;
  padding: 60px 32px;
  border-radius: 30px;
  text-align: center;
  margin: 60px 0;
  box-shadow: 0 15px 50px rgba(200, 90, 63, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-subscription::before, .cta-consultation::before, .cta-worldbox::before, .masterclass-offer::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.cta-subscription h2, .cta-consultation h2, .cta-worldbox h2, .masterclass-offer h2 {
  color: #FFFFFF;
  margin-bottom: 24px;
}

.cta-subscription p, .cta-consultation p, .cta-worldbox p, .masterclass-offer p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 20px;
}

.cta-subscription .price, .cta-consultation .price, .cta-worldbox .price, .masterclass-offer .price {
  color: #FFD93D;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Suggestion Links */
.suggestion-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.suggestion-links a {
  background: linear-gradient(90deg, #FFD93D 0%, #FF6B9D 100%);
  color: #FFFFFF;
  padding: 20px 32px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.3);
  transition: all 0.3s ease;
}

.suggestion-links a:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.5);
}

/* Legal Content */
.legal-content {
  background: #FFFFFF;
  padding: 60px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 3px solid #F4E4D7;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #2D5F4E 0%, #1E3A2F 100%);
  color: #FFFFFF;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  color: #FFD93D;
  margin-bottom: 20px;
  font-size: 22px;
}

.footer-section p, .footer-section a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.8;
}

.footer-section a {
  display: block;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #FFD93D;
  transform: translateX(5px);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 24px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #FFD93D;
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2D5F4E 0%, #1E3A2F 100%);
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-consent .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent p {
  flex: 1;
  min-width: 250px;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: #FFD93D;
  color: #2D3142;
}

.cookie-accept:hover {
  background: #FFC700;
  transform: scale(1.05);
}

.cookie-reject {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background: transparent;
  color: #FFD93D;
  border: 2px solid #FFD93D;
}

.cookie-settings:hover {
  background: rgba(255, 217, 61, 0.1);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 24px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-category {
  padding: 20px;
  border-radius: 12px;
  background: #F4E4D7;
  margin-bottom: 16px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #2D3142;
  cursor: pointer;
}

.cookie-category input[type="checkbox"] {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.cookie-category input[type="checkbox"]:disabled {
  opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  p, li {
    font-size: 16px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero, .hero-404, .thank-you-hero {
    padding: 60px 20px;
  }

  .error-code {
    font-size: 80px;
  }

  .tagline {
    font-size: 18px;
  }

  .cta-buttons, .button-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
  }

  .feature, .service-card, .category-item, .recipe-card, .cuisine-card, .style-card, .link-card, .contact-card, .continent-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    min-width: 100%;
  }

  .cookie-consent .container {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  .testimonial-card {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero::before, .hero::after {
    width: 300px;
    height: 300px;
  }

  .price {
    font-size: 24px;
  }

  .service-box {
    padding: 24px;
  }
}

/* Animations for page load */
body {
  animation: pageLoad 0.5s ease-out;
}

@keyframes pageLoad {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Ensure no overlapping */
.feature, .service-card, .category-item, .recipe-card, .cuisine-card, .style-card, .link-card, .contact-card, .testimonial-card, .service-box, .step, .principle-item, .technique-item, .tip-item, .level-section, .continent-card {
  position: relative;
  z-index: 1;
}

/* High contrast for readability */
.testimonial-card p, .service-box p, .feature p, .category-item, .recipe-card p, .cuisine-card p {
  color: #2D3142;
}

/* Flexbox alignment fixes */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Content spacing */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Card containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
}

/* Popular links styling */
.popular-links {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F4E4D7 0%, #FFFFFF 100%);
}

.popular-links h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* Help section */
.help-section {
  text-align: center;
  padding: 60px 20px;
}

.help-section p {
  max-width: 600px;
  margin: 0 auto 16px;
}

/* Encouragement section */
.encouragement {
  background: linear-gradient(135deg, #FFD93D 0%, #FF6B9D 100%);
  padding: 60px 20px;
  text-align: center;
  color: #FFFFFF;
}

.encouragement blockquote {
  border-left: none;
  color: #FFFFFF;
  font-size: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Guarantee section */
.guarantee ul {
  list-style: none;
  margin-left: 0;
}

.guarantee li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}

.guarantee li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2D5F4E;
  font-weight: 900;
  font-size: 20px;
}

/* Value proposition */
.value-proposition {
  background: linear-gradient(135deg, #F4E4D7 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

/* Featured cuisines */
.featured-cuisines, .european-cuisines, .asian-cuisines {
  padding: 60px 20px;
}

.featured-cuisines h2, .european-cuisines h2, .asian-cuisines h2 {
  text-align: center;
  margin-bottom: 16px;
}

.featured-cuisines p, .european-cuisines p, .asian-cuisines p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #4A5568;
}

/* How it works */
.how-it-works {
  background: linear-gradient(135deg, #FFFFFF 0%, #F4E4D7 100%);
  padding: 60px 20px;
}

/* Location info */
.location-info, .opening-hours, .contact-reasons {
  padding: 40px 20px;
}

.location-info p, .opening-hours p {
  margin-bottom: 16px;
}

/* Next steps */
.next-steps, .explore-meanwhile, .return-home {
  padding: 40px 20px;
  text-align: center;
}

/* Return navigation */
.return-navigation {
  padding: 60px 20px;
  text-align: center;
}

/* Ensure proper spacing */
section + section {
  margin-top: 0;
}

/* Smooth scrolling */
html {
  scroll-padding-top: 100px;
}

/* Focus states for accessibility */
a:focus, button:focus, input:focus {
  outline: 3px solid #FFD93D;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero, .hero-404, .thank-you-hero {
    background: #C85A3F;
  }

  .btn-primary {
    background: #C85A3F;
    border: 3px solid #FFFFFF;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}