/* ============================================
   SMAKI ŚWIATA - NATURE ORGANIC DESIGN SYSTEM
   Design Style: Nature-inspired organic design
   ============================================ */

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

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

body {
  font-family: 'Lato', 'Segoe UI', Tahoma, sans-serif;
  line-height: 1.7;
  color: #2C3E2E;
  background-color: #F8F6F1;
  overflow-x: hidden;
}

/* NATURE ORGANIC COLOR PALETTE */
:root {
  --primary-green: #558B2F;
  --deep-forest: #2C3E2E;
  --warm-earth: #D84315;
  --cream-beige: #FFF3E0;
  --sand-beige: #F8F6F1;
  --sage-green: #8BA888;
  --moss-green: #6B8E68;
  --terracotta: #C33D13;
  --white: #FFFFFF;
  --light-gray: #E8E5DC;
}

/* TYPOGRAPHY - NATURE ORGANIC */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--deep-forest);
  margin-bottom: 20px;
}

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

h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--deep-forest);
}

a {
  text-decoration: none;
  color: var(--primary-green);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--warm-earth);
}

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

li {
  margin-bottom: 12px;
  line-height: 1.7;
}

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

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

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

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

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(135deg, var(--cream-beige) 0%, var(--sand-beige) 100%);
  padding: 20px 0;
  box-shadow: 0 2px 12px rgba(44, 62, 46, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--sage-green);
}

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

.logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
  align-items: center;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--deep-forest);
  padding: 8px 16px;
  border-radius: 24px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  background-color: var(--primary-green);
  color: var(--white);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--primary-green);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(85, 139, 47, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--moss-green);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--cream-beige) 0%, var(--sand-beige) 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(44, 62, 46, 0.15);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--warm-earth);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  display: block;
  padding: 14px 20px;
  color: var(--deep-forest);
  font-size: 18px;
  font-weight: 500;
  border-radius: 12px;
  background: var(--white);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateX(8px);
}

/* BUTTONS - ORGANIC STYLE */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-green);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(85, 139, 47, 0.25);
}

.btn-primary:hover {
  background: var(--moss-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(85, 139, 47, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* HERO SECTION - ORGANIC */
.hero {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--primary-green) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50% 50% / 0 0 40px 40px;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

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

.hero h1 {
  color: var(--white);
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(44, 62, 46, 0.2);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--cream-beige);
  margin-bottom: 32px;
  font-weight: 300;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--cream-beige) 0%, var(--sand-beige) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
  border-bottom: 3px solid var(--sage-green);
}

.page-hero h1 {
  color: var(--deep-forest);
  margin-bottom: 16px;
}

/* BREADCRUMB */
.breadcrumb {
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--moss-green);
}

.breadcrumb a {
  color: var(--primary-green);
}

.breadcrumb span {
  color: var(--deep-forest);
}

/* SECTION STYLES */
.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--moss-green);
  max-width: 700px;
  margin: 0 auto 48px;
}

section h2 {
  text-align: center;
  color: var(--deep-forest);
  margin-bottom: 16px;
}

/* CARDS - ORGANIC STYLE */
.cuisine-card,
.service-card,
.recipe-card,
.benefit-card,
.workshop-card,
.testimonial-card,
.collection-card,
.tip-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(44, 62, 46, 0.08);
  transition: all 0.3s ease;
  border: 2px solid var(--light-gray);
  position: relative;
}

.cuisine-card:hover,
.service-card:hover,
.recipe-card:hover,
.benefit-card:hover,
.workshop-card:hover,
.collection-card:hover,
.tip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(85, 139, 47, 0.15);
  border-color: var(--primary-green);
}

.cuisine-card img,
.service-card img,
.benefit-card img,
.tip-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  opacity: 0.9;
}

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

.card p {
  color: var(--moss-green);
  font-size: 15px;
  line-height: 1.7;
}

/* GRID LAYOUTS - FLEXBOX ONLY */
.cuisines-grid,
.services-grid,
.recipes-grid,
.benefits-grid,
.workshops-list,
.collections-grid,
.tips-grid,
.testimonials-grid,
.pricing-table,
.packages-grid,
.contact-grid,
.reasons-grid,
.instructors-grid,
.team-grid,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.cuisines-grid > *,
.services-grid > *,
.benefits-grid > *,
.tips-grid > * {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}

.recipes-grid > *,
.collections-grid > *,
.testimonials-grid > *,
.contact-grid > *,
.reasons-grid > *,
.instructors-grid > *,
.team-grid > * {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
}

.workshops-list > *,
.pricing-table > *,
.packages-grid > * {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 300px;
}

.stats-grid > * {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
}

.cuisines-grid-large > * {
  flex: 1 1 calc(50% - 12px);
  min-width: 320px;
}

/* RECIPE CARDS */
.recipe-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.time,
.cuisine {
  font-size: 14px;
  color: var(--moss-green);
  padding: 6px 12px;
  background: var(--cream-beige);
  border-radius: 12px;
}

.cuisine-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--sage-green);
  color: var(--white);
  border-radius: 16px;
  font-size: 13px;
  margin-top: 8px;
}

.recipe-time {
  color: var(--moss-green);
  font-size: 14px;
  margin: 8px 0;
}

/* RATING */
.rating {
  color: #F9A825;
  font-size: 18px;
  margin-top: 12px;
}

/* PRICES */
.price,
.price-large {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-green);
  margin: 16px 0;
  font-family: 'Playfair Display', Georgia, serif;
}

.price-display {
  font-size: 40px;
  font-weight: 700;
  color: var(--warm-earth);
  display: block;
  margin: 24px 0;
  text-align: center;
}

/* SERVICE CARDS */
.service-card-large {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 6px 24px rgba(44, 62, 46, 0.1);
  border: 2px solid var(--light-gray);
  transition: all 0.3s ease;
}

.service-card-large:hover {
  border-color: var(--primary-green);
  box-shadow: 0 8px 32px rgba(85, 139, 47, 0.15);
}

.service-card-large img {
  width: 100px;
  height: 100px;
  margin-bottom: 24px;
}

.benefits-list {
  list-style: none;
  margin: 24px 0;
}

.benefits-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--deep-forest);
  margin-bottom: 8px;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 18px;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials,
.testimonials-slider {
  background: var(--cream-beige);
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(44, 62, 46, 0.08);
  border: 2px solid var(--sage-green);
  position: relative;
  margin-bottom: 24px;
}

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

.testimonial-author,
.author {
  font-weight: 600;
  color: var(--primary-green);
  font-size: 15px;
  margin-top: 16px;
  display: block;
}

.testimonial-card .rating {
  margin-top: 12px;
}

/* WORKSHOP CARDS */
.workshop-item,
.workshop-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border-left: 4px solid var(--primary-green);
  box-shadow: 0 3px 15px rgba(44, 62, 46, 0.08);
  margin-bottom: 20px;
  position: relative;
}

.workshop-date,
.workshop-meta {
  color: var(--moss-green);
  font-size: 14px;
  margin: 8px 0;
}

.spots {
  display: inline-block;
  padding: 6px 14px;
  background: var(--warm-earth);
  color: var(--white);
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
  margin: 12px 0;
}

.instructor {
  color: var(--primary-green);
  font-size: 14px;
  font-weight: 600;
  margin: 12px 0;
  display: block;
}

/* FORMS - ORGANIC STYLE */
.newsletter-form,
.form-wrapper {
  max-width: 600px;
  margin: 32px auto;
  padding: 32px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(44, 62, 46, 0.08);
  border: 2px solid var(--light-gray);
}

.form-input,
.form-select,
.form-textarea,
.search-input,
.filter-select {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  font-size: 15px;
  margin-bottom: 16px;
  font-family: 'Lato', sans-serif;
  transition: all 0.3s ease;
  background: var(--sand-beige);
  color: var(--deep-forest);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.search-input:focus,
.filter-select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(85, 139, 47, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

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

.form-field label {
  display: block;
  font-weight: 600;
  color: var(--deep-forest);
  margin-bottom: 8px;
  font-size: 15px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--moss-green);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary-green);
}

/* FILTERS */
.recipe-filters,
.filters-bar {
  background: var(--cream-beige);
  padding: 32px 20px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.filters-bar > * {
  flex: 1 1 200px;
}

/* TABS */
.region-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  justify-content: center;
}

.tab-button {
  padding: 12px 24px;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--deep-forest);
  transition: all 0.3s ease;
}

.tab-button:hover,
.tab-button.active {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
}

/* PRICING TIERS */
.pricing-tier {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  border: 2px solid var(--light-gray);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-tier.recommended {
  border-color: var(--primary-green);
  border-width: 3px;
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(85, 139, 47, 0.2);
}

.pricing-tier.recommended .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--warm-earth);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

.pricing-tier .price {
  font-size: 48px;
  color: var(--primary-green);
  margin: 20px 0;
}

.features-list {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.features-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--deep-forest);
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 700;
}

/* LINKS */
.link-arrow {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  margin-top: 12px;
  transition: all 0.3s ease;
}

.link-arrow::after {
  content: ' →';
  transition: transform 0.3s ease;
  display: inline-block;
}

.link-arrow:hover::after {
  transform: translateX(5px);
}

/* TAGS */
.country-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--sage-green);
  color: var(--white);
  border-radius: 20px;
  font-size: 14px;
  margin: 4px;
  transition: all 0.3s ease;
}

.country-tag:hover {
  background: var(--primary-green);
  transform: scale(1.05);
}

.recipe-badge,
.count {
  display: inline-block;
  padding: 6px 14px;
  background: var(--warm-earth);
  color: var(--white);
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
}

/* STATS */
.stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 2px solid var(--light-gray);
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-green);
  display: block;
  margin-bottom: 8px;
  font-family: 'Playfair Display', Georgia, serif;
}

/* TIMELINE */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-step {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border-left: 4px solid var(--primary-green);
  box-shadow: 0 3px 15px rgba(44, 62, 46, 0.08);
}

.timeline-step h3 {
  color: var(--primary-green);
  font-size: 18px;
  margin-bottom: 8px;
}

/* SIGNATURE DISHES */
.signature-dishes {
  list-style: none;
  margin: 20px 0;
}

.signature-dishes li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--moss-green);
}

.signature-dishes li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-size: 20px;
}

/* CUISINE FEATURE CARDS */
.cuisine-feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 6px 24px rgba(44, 62, 46, 0.1);
  border: 2px solid var(--light-gray);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.cuisine-feature-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 8px 32px rgba(85, 139, 47, 0.15);
}

.cuisine-feature-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 24px;
}

/* TRADITIONS & PRINCIPLES */
.tradition-card,
.principle-card,
.reason-card,
.benefit-item {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 2px solid var(--light-gray);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.tradition-card:hover,
.principle-card:hover,
.reason-card:hover,
.benefit-item:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
  box-shadow: 0 6px 24px rgba(85, 139, 47, 0.1);
}

.tradition-card img,
.principle-card img,
.reason-card img,
.benefit-item img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

/* TEAM MEMBERS */
.team-member,
.instructor-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 2px solid var(--light-gray);
  transition: all 0.3s ease;
}

.team-member:hover,
.instructor-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 6px 24px rgba(85, 139, 47, 0.1);
}

.role,
.title {
  color: var(--moss-green);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: block;
}

/* CONTACT CARDS */
.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 2px solid var(--light-gray);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
}

.contact-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

.note {
  font-size: 13px;
  color: var(--moss-green);
  margin-top: 8px;
}

.contact-direct {
  font-weight: 600;
  color: var(--primary-green);
  margin-top: 12px;
}

/* SOCIAL MEDIA */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.social-link {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--moss-green);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(85, 139, 47, 0.3);
}

.hashtag {
  text-align: center;
  color: var(--primary-green);
  font-size: 20px;
  font-weight: 600;
  margin-top: 16px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--cream-beige) 0%, var(--sand-beige) 100%);
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 24px;
  box-shadow: 0 6px 24px rgba(85, 139, 47, 0.3);
}

.confirmation-message {
  font-size: 18px;
  color: var(--moss-green);
  max-width: 600px;
  margin: 0 auto;
}

.steps-list {
  list-style: none;
  max-width: 600px;
  margin: 32px auto;
}

.steps-list li {
  padding: 16px 0 16px 40px;
  position: relative;
  font-size: 16px;
  color: var(--deep-forest);
}

.steps-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 16px;
  width: 28px;
  height: 28px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.quick-links-grid,
.link-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.link-card {
  flex: 1 1 300px;
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 2px solid var(--light-gray);
  transition: all 0.3s ease;
}

.link-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
}

.link-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

/* LEGAL CONTENT */
.legal-content {
  background: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: var(--sand-beige);
  border-radius: 20px;
  border: 2px solid var(--light-gray);
}

.content-wrapper h2 {
  color: var(--primary-green);
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper h3 {
  color: var(--deep-forest);
  text-align: left;
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-wrapper p,
.content-wrapper li {
  color: var(--deep-forest);
  font-size: 15px;
}

.last-updated,
.effective-date {
  font-size: 14px;
  color: var(--moss-green);
  text-align: center;
  margin-top: 8px;
}

.cookies-table {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  margin: 24px 0;
  border: 2px solid var(--light-gray);
}

.cookies-table h3 {
  color: var(--primary-green);
  font-size: 18px;
  margin-top: 16px;
  margin-bottom: 8px;
}

.hours-table {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  margin: 24px 0;
  border: 2px solid var(--light-gray);
}

.hours-table p {
  margin-bottom: 12px;
  font-size: 16px;
}

.policy-note,
.form-note {
  font-size: 13px;
  color: var(--moss-green);
  text-align: center;
  margin-top: 16px;
}

/* LOCATION & MAP */
.map-container {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  border: 2px solid var(--light-gray);
  margin: 24px 0;
}

.map-placeholder {
  background: var(--sand-beige);
  padding: 80px 20px;
  text-align: center;
  border-radius: 12px;
  color: var(--moss-green);
  font-size: 16px;
  margin-bottom: 16px;
}

/* FOOTER - ORGANIC */
footer {
  background: linear-gradient(135deg, var(--deep-forest) 0%, var(--moss-green) 100%);
  color: var(--cream-beige);
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-radius: 40px 40px 0 0;
}

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

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

.footer-section h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-section p {
  color: var(--cream-beige);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

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

.footer-nav a {
  color: var(--cream-beige);
  font-size: 14px;
  transition: all 0.3s ease;
}

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

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

.footer-bottom p {
  color: var(--cream-beige);
  font-size: 13px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--deep-forest) 0%, var(--primary-green) 100%);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(44, 62, 46, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-radius: 20px 20px 0 0;
}

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

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

.cookie-banner p {
  color: var(--cream-beige);
  font-size: 14px;
  margin: 0;
  flex: 1 1 300px;
}

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

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-btn-accept:hover {
  background: var(--cream-beige);
  transform: translateY(-2px);
}

.cookie-btn-reject,
.cookie-btn-settings {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 46, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

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

.cookie-modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(44, 62, 46, 0.3);
}

.cookie-modal h2 {
  color: var(--deep-forest);
  margin-bottom: 24px;
}

.cookie-category {
  background: var(--sand-beige);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 2px solid var(--light-gray);
}

.cookie-category h3 {
  color: var(--primary-green);
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* SPECIAL SECTIONS */
.premium-teaser,
.workshops-cta,
.newsletter,
.cta-final,
.cta-join,
.social-connect,
.social-follow {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--primary-green) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 60px 0;
  color: var(--white);
}

.premium-teaser h2,
.workshops-cta h2,
.newsletter h2,
.cta-final h2,
.cta-join h2,
.social-connect h2,
.social-follow h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.premium-teaser p,
.workshops-cta p,
.newsletter p,
.cta-final p,
.cta-join p,
.social-connect p,
.social-follow p {
  color: #d6cab6;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

/* VALUE PROPOSITION */
.value-proposition,
.service-benefits,
.approach {
  background: var(--cream-beige);
  padding: 60px 20px;
  border-radius: 30px;
  margin: 60px 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .cuisines-grid > *,
  .services-grid > *,
  .benefits-grid > *,
  .cuisines-grid-large > * {
    flex: 1 1 calc(50% - 12px);
  }
  
  .recipes-grid > *,
  .collections-grid > *,
  .workshops-list > *,
  .pricing-table > * {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  /* MOBILE MENU ACTIVATION */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-menu {
    display: none;
  }
  
  /* TYPOGRAPHY */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  /* LAYOUT */
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 40px 16px;
    margin-bottom: 40px;
  }
  
  /* FLEXBOX RESPONSIVE */
  .text-image-section {
    flex-direction: column;
  }
  
  .cuisines-grid > *,
  .services-grid > *,
  .benefits-grid > *,
  .recipes-grid > *,
  .collections-grid > *,
  .tips-grid > *,
  .testimonials-grid > *,
  .contact-grid > *,
  .reasons-grid > *,
  .instructors-grid > *,
  .team-grid > *,
  .stats-grid > *,
  .workshops-list > *,
  .pricing-table > *,
  .packages-grid > *,
  .cuisines-grid-large > * {
    flex: 1 1 100%;
  }
  
  /* CARDS */
  .cuisine-card,
  .service-card,
  .recipe-card,
  .service-card-large,
  .cuisine-feature-card {
    padding: 24px;
  }
  
  /* CTA BUTTONS */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* FORMS */
  .filters-bar {
    flex-direction: column;
  }
  
  .filters-bar > * {
    flex: 1 1 100%;
  }
  
  /* FOOTER */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* COOKIE BANNER */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* PRICING */
  .pricing-tier.recommended {
    transform: scale(1);
  }
  
  /* HERO */
  .hero {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .container {
    padding: 0 12px;
  }
  
  .card,
  .cuisine-card,
  .service-card {
    padding: 20px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .mobile-menu {
    width: 90%;
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.card,
.cuisine-card,
.service-card,
.recipe-card {
  animation: fadeIn 0.5s ease;
}

/* ACCESSIBILITY */
.btn:focus,
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: 3px solid var(--primary-green);
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cta-buttons {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}

/* SMOOTH SCROLLING */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  .btn-primary {
    border: 2px solid currentColor;
  }
  
  .card {
    border: 2px solid currentColor;
  }
}

/* DARK MODE SUPPORT (optional) */
@media (prefers-color-scheme: dark) {
  /* Keep light theme as default for nature organic style */
  /* Can be customized if needed */
}

/* UTILITIES */
.text-center {
  text-align: center;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* ENSURE NO GRID OR COLUMNS */
/* All layouts use flexbox only - verified */
/* No display: grid anywhere */
/* No column-count anywhere */
/* All spacing uses gap and margins */

/* END OF STYLESHEET */
/* Total focus on nature-organic design with earth tones, organic shapes, natural textures, and green accents */