/* CSS RESET AND BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', 'Comic Sans MS', 'Arial Rounded MT Bold', sans-serif;
  line-height: 1.6;
  color: #2C1810;
  background: linear-gradient(135deg, #FFF9E6 0%, #FFE5B4 50%, #FFDAB9 100%);
  overflow-x: hidden;
}

/* PLAYFUL DYNAMIC COLOR PALETTE */
:root {
  --primary: #FF6B35;
  --secondary: #FFB627;
  --accent: #00D9FF;
  --success: #4CD964;
  --text-dark: #2C1810;
  --text-light: #6B4423;
  --bg-cream: #FFF9E6;
  --bg-peach: #FFE5D9;
  --shadow: rgba(255, 107, 53, 0.2);
  --shadow-hover: rgba(255, 107, 53, 0.4);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style-position: inside;
}

/* PLAYFUL TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Comic Sans MS', cursive;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--primary);
  text-shadow: 2px 2px 0px rgba(255, 182, 39, 0.3);
  animation: bounceIn 0.8s ease;
}

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

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  transform: rotate(-2deg);
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 4px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from { width: 0; }
  to { width: 60%; }
}

h3 {
  font-size: 24px;
  color: var(--secondary);
}

p {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--primary);
  color: white;
  border: 3px solid var(--secondary);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 8px 20px var(--shadow);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

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

.mobile-menu-toggle:hover {
  background: var(--secondary);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 12px 24px var(--shadow-hover);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: 1002;
  padding: 80px 30px 30px;
  box-shadow: -8px 0 24px 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: white;
  color: var(--primary);
  border: 3px solid var(--accent);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-menu-close:hover {
  background: var(--accent);
  transform: rotate(90deg) scale(1.1);
}

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

.mobile-nav a {
  display: block;
  padding: 18px 24px;
  color: white;
  font-size: 20px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  text-align: center;
  transform: translateX(20px);
  opacity: 0;
  animation: slideInNav 0.4s ease forwards;
}

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

.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; }

.mobile-nav a:hover {
  background: white;
  color: var(--primary);
  transform: translateX(8px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* HEADER */
header {
  background: white;
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 4px solid var(--secondary);
}

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

.logo img {
  height: 60px;
  transition: transform 0.3s ease;
}

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

.main-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav a {
  padding: 12px 20px;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 16px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--bg-cream), var(--bg-peach));
  border: 2px solid transparent;
  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(255, 255, 255, 0.6), transparent);
  transition: left 0.5s ease;
}

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

.main-nav a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--secondary);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 16px var(--shadow);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '🍽️';
  position: absolute;
  font-size: 200px;
  opacity: 0.1;
  top: -50px;
  right: -50px;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '🌍';
  position: absolute;
  font-size: 180px;
  opacity: 0.1;
  bottom: -60px;
  left: -60px;
  animation: float 7s ease-in-out infinite reverse;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: white;
  font-size: 56px;
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
  animation: bounceIn 1s ease;
  transform: rotate(0deg);
}

.hero-subheadline,
.hero p {
  font-size: 22px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a {
  color: white;
  text-decoration: underline;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.location-highlight {
  font-weight: 700;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 24px;
  display: inline-block;
  margin-top: 16px;
  border: 2px solid white;
}

.last-updated {
  font-size: 16px;
  opacity: 0.8;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 30px;
  border: 3px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--shadow);
}

.btn::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;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--secondary);
  color: white;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary);
  border-color: var(--secondary);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px var(--shadow-hover);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--text-dark);
  border-color: var(--primary);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px var(--shadow-hover);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.section-subheading {
  text-align: center;
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* INTRO SECTION */
.intro {
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 24px var(--shadow);
  padding: 50px 40px;
  text-align: center;
  border: 4px solid var(--secondary);
  transform: rotate(-1deg);
  animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-1deg); }
  50% { transform: rotate(1deg); }
}

.intro h2 {
  color: var(--primary);
  margin-bottom: 24px;
}

/* FEATURES GRID */
.features {
  background: var(--bg-peach);
  border-radius: 24px;
  padding: 60px 40px;
}

.features h2 {
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.feature-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 20px var(--shadow);
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  border: 3px solid var(--accent);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '⭐';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 60px;
  opacity: 0.1;
  animation: spin 10s linear infinite;
}

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

.feature-card:hover {
  transform: translateY(-10px) rotate(2deg) scale(1.05);
  box-shadow: 0 16px 32px var(--shadow-hover);
  border-color: var(--primary);
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 22px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 16px;
}

/* SERVICES GRID */
.services-preview {
  background: linear-gradient(135deg, var(--bg-cream) 0%, white 100%);
  padding: 60px 20px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.service-card {
  background: white;
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 10px 30px var(--shadow);
  flex: 1 1 320px;
  max-width: 380px;
  border: 4px solid var(--secondary);
  transition: all 0.4s ease;
  position: relative;
}

.service-card::after {
  content: '🎉';
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::after {
  opacity: 0.3;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px var(--shadow-hover);
  border-color: var(--primary);
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 26px;
}

.service-card p {
  margin-bottom: 20px;
  color: var(--text-dark);
}

.service-card .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary);
  margin: 24px 0;
  text-shadow: 2px 2px 0px rgba(255, 182, 39, 0.2);
}

/* CATEGORY GRID */
.cuisine-categories {
  background: var(--bg-peach);
  padding: 60px 20px;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.category-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px var(--shadow);
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  border: 4px solid white;
  transition: all 0.3s ease;
  color: white;
}

.category-card:hover {
  transform: translateY(-10px) rotate(-2deg) scale(1.05);
  box-shadow: 0 16px 36px var(--shadow-hover);
}

.category-card h3 {
  color: white;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.category-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
}

/* TESTIMONIALS */
.testimonials {
  background: white;
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.rating-average {
  text-align: center;
  font-size: 24px;
  color: var(--secondary);
  margin-bottom: 32px;
  font-weight: 700;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--bg-cream), var(--bg-peach));
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px var(--shadow);
  flex: 1 1 400px;
  max-width: 500px;
  border: 4px solid var(--accent);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 100px;
  color: var(--primary);
  opacity: 0.2;
  font-family: serif;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 32px var(--shadow-hover);
}

.testimonial-card p {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
  font-style: normal;
  text-align: right;
}

/* CTA BANNER */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 50%, var(--secondary) 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-section::before {
  content: '🎊';
  position: absolute;
  font-size: 120px;
  opacity: 0.15;
  top: -30px;
  left: 10%;
  animation: bounce 3s ease-in-out infinite;
}

.cta-banner::after,
.cta-section::after {
  content: '🎈';
  position: absolute;
  font-size: 100px;
  opacity: 0.15;
  bottom: -20px;
  right: 10%;
  animation: bounce 3s ease-in-out infinite reverse;
}

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

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  font-size: 42px;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  color: white;
  font-size: 20px;
  margin-bottom: 32px;
}

.contact-alternative {
  margin-top: 20px;
  font-size: 16px;
}

.contact-alternative a {
  color: white;
  text-decoration: underline;
  font-weight: 700;
}

.contact-alternative a:hover {
  color: var(--accent);
}

/* CONTACT INFO */
.contact-info {
  background: var(--bg-cream);
  padding: 60px 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.contact-card,
.contact-item {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 20px var(--shadow);
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  border: 3px solid var(--secondary);
  transition: all 0.3s ease;
}

.contact-card:hover,
.contact-item:hover {
  transform: translateY(-8px) rotate(2deg);
  box-shadow: 0 12px 28px var(--shadow-hover);
  border-color: var(--primary);
}

.contact-card h3,
.contact-item h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 24px;
}

.contact-card p,
.contact-item p {
  color: var(--text-dark);
  font-size: 18px;
}

.contact-card a,
.contact-item a {
  color: var(--primary);
  font-weight: 700;
}

.contact-card a:hover,
.contact-item a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.contact-note {
  text-align: center;
  margin-top: 32px;
  font-size: 18px;
  color: var(--text-light);
  font-weight: 700;
}

/* RECIPES & FILTERS */
.recipe-filters {
  background: white;
  padding: 40px 20px;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow);
}

.filters-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.filter-group h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 20px;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-btn {
  padding: 10px 20px;
  background: var(--bg-cream);
  color: var(--text-dark);
  border: 2px solid var(--secondary);
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 4px 12px var(--shadow);
}

.featured-recipes,
.recipe-grid {
  background: var(--bg-peach);
  padding: 60px 20px;
  margin-bottom: 40px;
}

.recipes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.recipe-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 24px var(--shadow);
  flex: 1 1 300px;
  max-width: 360px;
  overflow: hidden;
  border: 4px solid var(--secondary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.recipe-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 16px 36px var(--shadow-hover);
  border-color: var(--primary);
}

.recipe-image-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}

.recipe-image-placeholder::before {
  content: '🍜';
  animation: float 4s ease-in-out infinite;
}

.recipe-card h3 {
  padding: 20px 20px 12px;
  color: var(--primary);
  font-size: 22px;
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 12px;
}

.recipe-meta span {
  padding: 6px 12px;
  background: var(--bg-cream);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  border: 2px solid var(--secondary);
}

.recipe-card p {
  padding: 0 20px 16px;
  color: var(--text-light);
  font-size: 16px;
  flex-grow: 1;
}

.recipe-rating {
  padding: 12px 20px 20px;
  font-size: 20px;
  color: var(--secondary);
}

/* CUISINE CARDS */
.cuisine-showcase {
  padding: 60px 20px;
  background: white;
}

.cuisine-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.cuisine-card {
  background: var(--bg-cream);
  padding: 36px;
  border-radius: 20px;
  box-shadow: 0 8px 24px var(--shadow);
  flex: 1 1 350px;
  max-width: 450px;
  border: 4px solid var(--accent);
  transition: all 0.3s ease;
}

.cuisine-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 16px 32px var(--shadow-hover);
  border-color: var(--primary);
}

.cuisine-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 28px;
}

.specialties {
  margin-top: 24px;
}

.specialties h4 {
  color: var(--secondary);
  margin-bottom: 12px;
  font-size: 20px;
}

.specialties ul {
  padding-left: 20px;
}

.specialties li {
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 16px;
}

/* REGIONS */
.regional-focus {
  background: var(--bg-peach);
  padding: 60px 20px;
}

.regions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.region-card {
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 6px 18px var(--shadow);
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  border: 3px solid var(--secondary);
  transition: all 0.3s ease;
}

.region-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 28px var(--shadow-hover);
  border-color: var(--primary);
}

.region-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 22px;
}

/* INSIGHTS */
.cultural-insights {
  background: white;
  padding: 60px 20px;
}

.insights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.insight-card {
  background: linear-gradient(135deg, var(--bg-cream), white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 20px var(--shadow);
  flex: 1 1 280px;
  max-width: 320px;
  border: 3px solid var(--accent);
  transition: all 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 12px 28px var(--shadow-hover);
  border-color: var(--primary);
}

.insight-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

/* TECHNIQUES */
.technique-overview,
.techniques-grid {
  background: var(--bg-peach);
  padding: 60px 20px;
}

.techniques-grid-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.technique-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px var(--shadow);
  flex: 1 1 320px;
  max-width: 380px;
  border: 4px solid var(--secondary);
  transition: all 0.3s ease;
}

.technique-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 32px var(--shadow-hover);
  border-color: var(--primary);
}

.technique-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 24px;
}

/* PLATING & TIPS */
.plating-tips,
.recipe-tips {
  background: white;
  padding: 60px 20px;
}

.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.tip-card {
  background: var(--bg-cream);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 6px 18px var(--shadow);
  flex: 1 1 280px;
  max-width: 320px;
  border: 3px solid var(--accent);
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 12px 24px var(--shadow-hover);
  border-color: var(--primary);
}

.tip-card h3 {
  color: var(--secondary);
  margin-bottom: 12px;
}

/* INGREDIENT GUIDE */
.ingredient-guide {
  background: var(--bg-peach);
  padding: 60px 20px;
}

.guide-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.guide-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px var(--shadow);
  flex: 1 1 280px;
  max-width: 320px;
  border: 4px solid var(--secondary);
  transition: all 0.3s ease;
  text-align: center;
}

.guide-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 16px 32px var(--shadow-hover);
  border-color: var(--primary);
}

.guide-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

/* CHEF SECRETS */
.chef-secrets {
  background: white;
  padding: 60px 20px;
}

.secrets-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.secret-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px var(--shadow);
  flex: 1 1 280px;
  max-width: 320px;
  border: 4px solid white;
  transition: all 0.3s ease;
  color: white;
  text-align: center;
}

.secret-card:hover {
  transform: translateY(-10px) rotate(2deg) scale(1.05);
  box-shadow: 0 16px 36px var(--shadow-hover);
}

.secret-card h3 {
  color: white;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.secret-card p {
  color: rgba(255, 255, 255, 0.95);
}

/* FAQ */
.faq-section,
.faq-contact {
  background: var(--bg-cream);
  padding: 60px 20px;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 6px 18px var(--shadow);
  border: 3px solid var(--secondary);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px var(--shadow-hover);
  border-color: var(--primary);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 20px;
}

.faq-item p {
  color: var(--text-dark);
}

/* COURSES */
.courses-intro {
  background: white;
  padding: 50px 20px;
  text-align: center;
}

.benefits-list ul {
  max-width: 600px;
  margin: 24px auto 0;
  text-align: left;
}

.benefits-list li {
  padding: 12px 0;
  font-size: 18px;
  color: var(--text-dark);
  border-bottom: 2px solid var(--bg-peach);
}

.courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.course-card {
  background: white;
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 10px 30px var(--shadow);
  flex: 1 1 350px;
  max-width: 420px;
  border: 4px solid var(--accent);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.course-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px var(--shadow-hover);
  border-color: var(--primary);
}

.course-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 26px;
}

.course-details {
  margin: 24px 0;
  padding: 20px;
  background: var(--bg-cream);
  border-radius: 12px;
  border: 2px solid var(--secondary);
}

.course-details p {
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--text-dark);
}

.course-details .price {
  font-size: 36px;
  color: var(--secondary);
  text-shadow: 2px 2px 0px rgba(255, 182, 39, 0.2);
}

/* COURSE FEATURES */
.course-features {
  background: var(--bg-peach);
  padding: 60px 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow);
  flex: 1 1 280px;
  max-width: 350px;
  border: 2px solid var(--accent);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 16px var(--shadow-hover);
  border-color: var(--primary);
}

.feature-item p {
  font-size: 16px;
  color: var(--text-dark);
  margin: 0;
}

/* SCHEDULE */
.schedule-info {
  background: white;
  padding: 50px 20px;
  text-align: center;
}

.schedule-content {
  max-width: 700px;
  margin: 32px auto 0;
  background: var(--bg-cream);
  padding: 32px;
  border-radius: 20px;
  border: 3px solid var(--secondary);
  box-shadow: 0 8px 20px var(--shadow);
}

.schedule-content p {
  margin-bottom: 16px;
  font-size: 18px;
  color: var(--text-dark);
}

.schedule-content strong {
  color: var(--primary);
}

/* ABOUT - STORY */
.story {
  background: white;
  padding: 60px 20px;
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
}

.story-content p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.milestone {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 20px 28px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 18px;
  border: 3px solid white;
  box-shadow: 0 6px 16px var(--shadow);
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 10px 24px var(--shadow-hover);
}

/* MISSION & VISION */
.mission-vision {
  background: var(--bg-peach);
  padding: 60px 20px;
}

.mission-content {
  max-width: 900px;
  margin: 0 auto;
}

.mission-statement {
  font-size: 22px;
  text-align: center;
  padding: 32px;
  background: white;
  border-radius: 20px;
  border: 4px solid var(--secondary);
  box-shadow: 0 8px 24px var(--shadow);
  margin-bottom: 48px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.value-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px var(--shadow);
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  border: 3px solid var(--accent);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px) rotate(-2deg) scale(1.05);
  box-shadow: 0 12px 28px var(--shadow-hover);
  border-color: var(--primary);
}

.value-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

/* TEAM */
.team {
  background: white;
  padding: 60px 20px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.chef-card {
  background: var(--bg-cream);
  padding: 36px;
  border-radius: 20px;
  box-shadow: 0 8px 24px var(--shadow);
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  border: 4px solid var(--secondary);
  transition: all 0.3s ease;
}

.chef-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 16px 32px var(--shadow-hover);
  border-color: var(--primary);
}

.chef-card h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 24px;
}

.chef-card .role {
  color: var(--secondary);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
  display: block;
}

/* FACILITIES */
.facilities {
  background: var(--bg-peach);
  padding: 60px 20px;
}

.facilities .location {
  text-align: center;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 32px;
}

.facilities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.facility-item {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 6px 18px var(--shadow);
  flex: 1 1 300px;
  max-width: 380px;
  border: 3px solid var(--accent);
  transition: all 0.3s ease;
}

.facility-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 20px var(--shadow-hover);
  border-color: var(--primary);
}

.facility-item p {
  font-size: 18px;
  color: var(--text-dark);
  margin: 0;
}

/* ACHIEVEMENTS */
.achievements {
  background: white;
  padding: 60px 20px;
}

.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.achievement-card {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 8px 20px var(--shadow);
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  border: 4px solid white;
  transition: all 0.3s ease;
  font-size: 20px;
  font-weight: 700;
}

.achievement-card:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 12px 28px var(--shadow-hover);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 3px solid var(--secondary);
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
  font-size: 18px;
  color: var(--text-dark);
}

.stat-item strong {
  display: block;
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 8px;
  text-shadow: 2px 2px 0px rgba(255, 182, 39, 0.2);
}

/* CONTACT FORM */
.contact-form-section {
  background: white;
  padding: 60px 20px;
}

.form-wrapper {
  max-width: 700px;
  margin: 40px auto 0;
  background: var(--bg-cream);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 24px var(--shadow);
  border: 4px solid var(--secondary);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 18px;
}

.input-field {
  width: 100%;
  padding: 14px 18px;
  border: 3px solid var(--secondary);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  background: white;
  transition: all 0.3s ease;
}

.input-field:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.input-field:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.6;
}

.form-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-light);
}

/* MAP */
.map-section {
  background: var(--bg-peach);
  padding: 60px 20px;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  font-weight: 700;
  margin: 32px 0;
  border: 4px solid var(--secondary);
  box-shadow: 0 8px 24px var(--shadow);
}

.directions {
  max-width: 800px;
  margin: 32px auto 0;
  background: white;
  padding: 32px;
  border-radius: 20px;
  border: 3px solid var(--accent);
  box-shadow: 0 6px 18px var(--shadow);
}

.directions h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

.directions ul {
  padding-left: 24px;
}

.directions li {
  margin-bottom: 12px;
  font-size: 18px;
  color: var(--text-dark);
}

.directions .note {
  margin-top: 24px;
  padding: 16px;
  background: var(--bg-cream);
  border-radius: 12px;
  border: 2px solid var(--secondary);
  font-weight: 700;
}

/* THANK YOU PAGE */
.thank-you {
  background: white;
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.checkmark {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--success), #2ECC71);
  color: white;
  font-size: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border: 6px solid white;
  box-shadow: 0 12px 32px rgba(76, 217, 100, 0.4);
  animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.success-message {
  font-size: 24px;
  color: var(--success);
  font-weight: 700;
  margin-bottom: 24px;
}

.next-steps {
  background: var(--bg-cream);
  padding: 32px;
  border-radius: 20px;
  border: 3px solid var(--secondary);
  margin: 40px 0;
  text-align: left;
}

.next-steps h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.next-steps ol {
  padding-left: 24px;
}

.next-steps li {
  margin-bottom: 12px;
  font-size: 18px;
  color: var(--text-dark);
}

.next-actions {
  background: var(--bg-peach);
  padding: 60px 20px;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.action-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px var(--shadow);
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  border: 4px solid var(--accent);
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 16px 32px var(--shadow-hover);
  border-color: var(--primary);
}

.action-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.social-proof {
  background: white;
  padding: 60px 20px;
  text-align: center;
}

.social-proof p {
  font-size: 20px;
  max-width: 700px;
  margin: 16px auto;
  color: var(--text-dark);
}

.contact-reminder {
  background: var(--bg-cream);
  padding: 60px 20px;
  text-align: center;
}

.contact-reminder .contact-info {
  max-width: 600px;
  margin: 32px auto 0;
  background: white;
  padding: 32px;
  border-radius: 20px;
  border: 3px solid var(--secondary);
  box-shadow: 0 8px 20px var(--shadow);
}

/* LEGAL CONTENT */
.legal-content {
  background: white;
  padding: 60px 20px;
}

.legal-content .content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h2 {
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

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

.legal-content li {
  margin-bottom: 12px;
  font-size: 18px;
  color: var(--text-dark);
}

.legal-content a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--secondary);
}

/* CATEGORY TABS */
.content-categories {
  background: white;
  padding: 40px 20px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tab-btn {
  padding: 12px 24px;
  background: var(--bg-cream);
  color: var(--text-dark);
  border: 3px solid var(--secondary);
  border-radius: 24px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 4px 12px var(--shadow);
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #3E2723 100%);
  color: white;
  padding: 60px 20px 24px;
  margin-top: 60px;
  border-top: 6px solid var(--primary);
}

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

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

.footer-logo {
  height: 60px;
  margin-bottom: 16px;
}

.footer-section h3 {
  color: var(--secondary);
  margin-bottom: 16px;
  font-size: 22px;
}

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

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: var(--secondary);
  padding-left: 20px;
}

.footer-nav a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-section a {
  color: var(--secondary);
  font-weight: 700;
}

.footer-section a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 24px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid var(--accent);
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  flex: 1 1 400px;
  font-size: 16px;
  line-height: 1.6;
}

.cookie-text a {
  color: white;
  text-decoration: underline;
  font-weight: 700;
}

.cookie-text a:hover {
  color: var(--accent);
}

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

.cookie-btn {
  padding: 12px 24px;
  border: 3px solid white;
  border-radius: 24px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: white;
  color: var(--primary);
}

.cookie-btn-accept:hover {
  background: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-reject {
  background: transparent;
  color: white;
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.cookie-btn-settings {
  background: transparent;
  color: white;
  border-color: var(--accent);
}

.cookie-btn-settings:hover {
  background: var(--accent);
  color: var(--text-dark);
  transform: scale(1.05);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.cookie-modal.show {
  display: flex;
}

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

.cookie-modal-content {
  background: white;
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 4px solid var(--secondary);
  animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h2 {
  color: var(--primary);
  margin: 0;
}

.cookie-modal-close {
  background: var(--primary);
  color: white;
  border: 3px solid var(--secondary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: var(--secondary);
  transform: rotate(90deg) scale(1.1);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--bg-cream);
  border-radius: 16px;
  border: 2px solid var(--secondary);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h3 {
  color: var(--primary);
  margin: 0;
  font-size: 20px;
}

.cookie-toggle {
  width: 60px;
  height: 32px;
  background: #ccc;
  border-radius: 32px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: var(--success);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(28px);
}

.cookie-category p {
  color: var(--text-dark);
  font-size: 16px;
  margin: 0;
}

.cookie-modal-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--bg-peach);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero-subheadline,
  .hero p {
    font-size: 18px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    padding: 14px 24px;
  }
  
  .features-grid,
  .services-grid,
  .category-grid,
  .testimonials-grid,
  .contact-grid,
  .recipes-grid,
  .cuisine-cards,
  .regions-grid,
  .insights-grid,
  .techniques-grid-layout,
  .tips-grid,
  .guide-grid,
  .secrets-grid,
  .courses-grid,
  .team-grid,
  .facilities-grid,
  .achievements-grid,
  .actions-grid,
  .values-grid {
    gap: 20px;
  }
  
  .feature-card,
  .service-card,
  .category-card,
  .testimonial-card,
  .contact-card,
  .contact-item,
  .recipe-card,
  .cuisine-card,
  .region-card,
  .insight-card,
  .technique-card,
  .tip-card,
  .guide-card,
  .secret-card,
  .course-card,
  .chef-card,
  .facility-item,
  .achievement-card,
  .action-card,
  .value-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .section-subheading {
    font-size: 18px;
  }
  
  section {
    padding: 40px 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .feature-card,
  .service-card,
  .category-card,
  .recipe-card,
  .region-card,
  .insight-card,
  .technique-card,
  .tip-card,
  .guide-card,
  .course-card,
  .chef-card,
  .value-card {
    flex: 1 1 calc(50% - 16px);
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer,
  .cta-buttons,
  .btn {
    display: none !important;
  }
  
  body {
    background: white;
  }
  
  * {
    box-shadow: none !important;
  }
}