/* ========================================
   WELTKÜCHE ZUHAUSE - MONOCHROME SOPHISTICATED
   Modern CSS Styles with Flexbox Layouts
======================================== */

/* ===== 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.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== TYPOGRAPHY - MONOCHROME SOPHISTICATED ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 16px;
}

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

h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #333333;
}

strong {
  font-weight: 600;
  color: #000000;
}

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

.section {
  padding: 80px 0;
  margin-bottom: 0;
}

/* ===== BUTTONS - SOPHISTICATED MONOCHROME ===== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 2px solid #000000;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
}

.btn-primary {
  background-color: #000000;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #333333;
  border-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: #ffffff;
  color: #000000;
}

.btn-secondary:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* ===== HEADER - ELEGANT BLACK & WHITE ===== */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #000000;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.phone-link {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  letter-spacing: 0.5px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #000000;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 2px;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 2001;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #000000;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
  gap: 0;
}

.mobile-nav a {
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  border-bottom: 1px solid #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.mobile-nav a:hover {
  color: #000000;
  padding-left: 8px;
}

/* ===== HERO SECTION - DRAMATIC CONTRAST ===== */
.hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  padding: 120px 0;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0, 0, 0, 0.02) 10px,
    rgba(0, 0, 0, 0.02) 20px
  );
}

.hero-content {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #000000;
}

.hero-subtitle {
  font-size: 20px;
  color: #555555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(to bottom, #f5f5f5, #ffffff);
  padding: 80px 0 60px;
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
  font-size: 14px;
  color: #666666;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #000000;
  font-weight: 600;
}

.subtitle {
  font-size: 18px;
  color: #555555;
  max-width: 600px;
}

.location-badge {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 2px;
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 600;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 80px 0;
  background-color: #ffffff;
}

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

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

.feature-card {
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  padding: 40px 24px;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.feature-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  filter: grayscale(100%) contrast(1.2);
}

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

.feature-card p {
  color: #666666;
  line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 80px 0;
  background-color: #fafafa;
}

.services h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.service-card {
  flex: 1 1 340px;
  max-width: 380px;
  background-color: #ffffff;
  padding: 40px;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  border-color: #000000;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.service-card p {
  color: #666666;
  flex-grow: 1;
}

.service-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  font-family: 'Playfair Display', serif;
  margin: 16px 0;
}

/* ===== CUISINE HIGHLIGHTS ===== */
.cuisine-highlights {
  padding: 80px 0;
  background-color: #ffffff;
}

.cuisine-highlights h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.region-card {
  flex: 1 1 260px;
  max-width: 280px;
  background-color: #000000;
  color: #ffffff;
  padding: 60px 32px;
  text-align: center;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.region-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.region-card:hover::before {
  opacity: 1;
}

.region-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.region-card h3 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 12px;
}

.region-card p {
  color: #cccccc;
  margin-bottom: 24px;
  font-size: 14px;
}

.region-card a {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 4px;
  display: inline-block;
}

/* ===== TESTIMONIALS - HIGH CONTRAST ===== */
.testimonials {
  padding: 80px 0;
  background-color: #f5f5f5;
}

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

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

.testimonial-card {
  flex: 1 1 400px;
  max-width: 500px;
  background-color: #ffffff;
  padding: 40px;
  border-left: 4px solid #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #1a1a1a;
  font-style: italic;
}

.testimonial-card .author {
  font-weight: 600;
  color: #000000;
  font-style: normal;
  font-size: 15px;
  margin-top: 8px;
}

.testimonial-card .course-name {
  font-size: 14px;
  color: #666666;
  font-style: normal;
}

.rating {
  color: #000000;
  font-size: 18px;
  letter-spacing: 2px;
}

/* ===== CTA BANNER - DRAMATIC ===== */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.03) 20px,
    rgba(255, 255, 255, 0.03) 40px
  );
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 20px;
  color: #cccccc;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-banner .btn-primary {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.cta-banner .btn-primary:hover {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}

.cta-banner .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-banner .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ===== CONTACT INFO ===== */
.contact-info {
  padding: 80px 0;
  background-color: #ffffff;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.contact-details {
  flex: 1 1 400px;
  max-width: 600px;
}

.contact-details p {
  margin-bottom: 24px;
  line-height: 1.8;
  color: #333333;
}

/* ===== FOOTER - ELEGANT MONOCHROME ===== */
footer {
  background-color: #1a1a1a;
  color: #cccccc;
  padding: 60px 0 24px;
}

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

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 8px;
}

.footer-col p {
  color: #999999;
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-nav a {
  color: #999999;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  color: #666666;
  font-size: 14px;
}

.legal-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.legal-nav a {
  color: #666666;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-nav a:hover {
  color: #ffffff;
}

/* ===== RECIPES PAGE ===== */
.recipe-filter {
  padding: 40px 0;
  background-color: #fafafa;
  border-bottom: 1px solid #e0e0e0;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.search-box {
  flex: 1 1 280px;
}

.search-input {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #000000;
}

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

.filter-select {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  font-size: 14px;
  background-color: #ffffff;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.filter-select:focus {
  outline: none;
  border-color: #000000;
}

.recipes {
  padding: 80px 0;
}

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

.recipe-card {
  flex: 1 1 320px;
  max-width: 360px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #000000;
}

.recipe-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #000000;
  color: #ffffff;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.recipe-card h3 {
  padding: 24px 24px 0;
  font-size: 24px;
}

.recipe-card p {
  padding: 0 24px;
  color: #666666;
  font-size: 15px;
}

.recipe-meta {
  padding: 16px 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #999999;
  border-top: 1px solid #f0f0f0;
}

.recipe-card .btn-secondary {
  margin: 0 24px 24px;
  text-align: center;
}

.collections {
  padding: 80px 0;
  background-color: #fafafa;
}

.collections h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.collection-card {
  flex: 1 1 320px;
  max-width: 360px;
  background-color: #ffffff;
  padding: 40px;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  text-align: center;
  transition: all 0.3s ease;
}

.collection-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
}

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

.collection-card p {
  color: #666666;
  margin-bottom: 24px;
}

.collection-card a {
  color: #000000;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #000000;
  padding-bottom: 4px;
}

/* ===== CUISINES PAGE ===== */
.region-tabs {
  padding: 40px 0;
  background-color: #fafafa;
  border-bottom: 1px solid #e0e0e0;
}

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

.tab {
  padding: 12px 24px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tab:hover,
.tab.active {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.cuisines {
  padding: 80px 0;
}

.cuisines h2 {
  text-align: center;
  margin-bottom: 60px;
}

.cuisines-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.cuisine-card {
  flex: 1 1 400px;
  max-width: 500px;
  background-color: #ffffff;
  padding: 40px;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cuisine-card:hover {
  border-color: #000000;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.cuisine-card h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.cuisine-card .recipe-count {
  font-size: 14px;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.cuisine-card .signature-dishes {
  padding: 16px;
  background-color: #f5f5f5;
  border-left: 3px solid #000000;
  margin: 8px 0;
  font-size: 14px;
  color: #333333;
}

.ingredient-glossary {
  padding: 80px 0;
  background-color: #fafafa;
}

.ingredient-glossary h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.ingredient-card {
  flex: 1 1 280px;
  max-width: 340px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.ingredient-card:hover {
  border-color: #000000;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.ingredient-card h4 {
  font-size: 22px;
  margin-bottom: 16px;
  border-bottom: 2px solid #000000;
  padding-bottom: 8px;
}

.ingredient-card p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 8px;
}

/* ===== COOKING TIPS PAGE ===== */
.tips-categories {
  padding: 40px 0;
  background-color: #fafafa;
  border-bottom: 1px solid #e0e0e0;
}

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

.category-tab {
  padding: 12px 20px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.tips {
  padding: 80px 0;
}

.tips h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.tip-card {
  flex: 1 1 340px;
  max-width: 380px;
  background-color: #ffffff;
  padding: 32px;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tip-card:hover {
  border-color: #000000;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.tip-badge {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
}

.tip-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.pro-tip {
  padding: 16px;
  background-color: #f5f5f5;
  border-left: 3px solid #000000;
  font-size: 14px;
  margin-top: 8px;
}

.technique-guides {
  padding: 80px 0;
  background-color: #fafafa;
}

.technique-guides h2 {
  text-align: center;
  margin-bottom: 60px;
}

.techniques-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.technique-item {
  background-color: #ffffff;
  padding: 32px;
  border-left: 4px solid #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.technique-item h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.technique-item p {
  font-size: 15px;
  color: #666666;
  margin-bottom: 12px;
}

.plating {
  padding: 80px 0;
  background-color: #ffffff;
}

.plating h2 {
  text-align: center;
  margin-bottom: 60px;
}

.plating-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.tip-box {
  flex: 1 1 280px;
  max-width: 340px;
  background-color: #000000;
  color: #ffffff;
  padding: 40px 32px;
  border-radius: 2px;
  text-align: center;
}

.tip-box h4 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 16px;
}

.tip-box p {
  color: #cccccc;
  font-size: 15px;
}

/* ===== COURSES PAGE ===== */
.courses {
  padding: 80px 0;
}

.courses h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.course-card {
  flex: 1 1 340px;
  max-width: 380px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.course-card:hover {
  border-color: #000000;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.course-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background-color: #000000;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.course-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.course-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background-color: #f5f5f5;
  border-radius: 2px;
}

.course-details p {
  font-size: 14px;
  color: #333333;
  margin: 0;
}

.course-includes {
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
}

.course-includes strong {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
}

.course-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.course-includes li {
  font-size: 14px;
  color: #666666;
  padding-left: 20px;
  position: relative;
}

.course-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: bold;
}

.location {
  padding: 80px 0;
  background-color: #fafafa;
}

.location h2 {
  text-align: center;
  margin-bottom: 60px;
}

.location-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-info {
  background-color: #ffffff;
  padding: 40px;
  border-left: 4px solid #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.pricing-packages {
  padding: 80px 0;
  background-color: #ffffff;
}

.pricing-packages h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.package-card {
  flex: 1 1 280px;
  max-width: 320px;
  background-color: #ffffff;
  padding: 40px 32px;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.package-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
  border-color: #000000;
  border-width: 3px;
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000000;
  color: #ffffff;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.package-price {
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  font-family: 'Playfair Display', serif;
  margin: 16px 0;
}

.savings {
  font-size: 14px;
  color: #666666;
  font-weight: 600;
  margin-bottom: 16px;
}

.package-card ul {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.package-card li {
  font-size: 14px;
  color: #333333;
  padding-left: 20px;
  position: relative;
}

.package-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: bold;
}

.faq {
  padding: 80px 0;
  background-color: #fafafa;
}

.faq h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.faq-item {
  background-color: #ffffff;
  padding: 32px;
  border-left: 3px solid #000000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 15px;
  color: #666666;
}

/* ===== ABOUT PAGE ===== */
.our-story {
  padding: 80px 0;
}

.our-story h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.story-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 24px;
}

.philosophy {
  padding: 80px 0;
  background-color: #fafafa;
}

.philosophy h2 {
  text-align: center;
  margin-bottom: 60px;
}

.philosophy-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.pillar-card {
  flex: 1 1 280px;
  max-width: 340px;
  background-color: #ffffff;
  padding: 40px 32px;
  text-align: center;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
}

.pillar-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  filter: grayscale(100%) contrast(1.2);
}

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

.expertise {
  padding: 80px 0;
  background-color: #000000;
  color: #ffffff;
}

.expertise h2 {
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.stat-card {
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  padding: 32px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: #ffffff;
  transform: translateY(-4px);
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-about {
  padding: 80px 0;
  text-align: center;
}

.cta-about h2 {
  margin-bottom: 40px;
}

/* ===== CONTACT PAGE ===== */
.contact-cards {
  padding: 80px 0;
}

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

.contact-card {
  flex: 1 1 280px;
  max-width: 340px;
  background-color: #ffffff;
  padding: 40px 32px;
  text-align: center;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.contact-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  filter: grayscale(100%) contrast(1.2);
}

.contact-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.contact-form-section {
  padding: 80px 0;
  background-color: #fafafa;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 24px;
}

.form-intro {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

.form-note {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  text-align: center;
}

.location-details {
  padding: 80px 0;
}

.location-details h2 {
  text-align: center;
  margin-bottom: 60px;
}

.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.note {
  font-size: 14px;
  color: #999999;
  font-style: italic;
  margin-top: 16px;
}

.directions {
  padding: 80px 0;
  background-color: #fafafa;
}

.directions h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.direction-card {
  flex: 1 1 300px;
  max-width: 360px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
}

.direction-card h4 {
  font-size: 20px;
  margin-bottom: 16px;
}

.direction-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.direction-card li {
  font-size: 14px;
  color: #666666;
  padding-left: 16px;
  position: relative;
}

.direction-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #000000;
}

.faq-contact {
  padding: 80px 0;
}

.faq-contact h2 {
  text-align: center;
  margin-bottom: 60px;
}

/* ===== LEGAL PAGES ===== */
.legal-hero {
  padding: 80px 0 60px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.legal-hero h1 {
  margin-bottom: 16px;
}

.last-updated {
  font-size: 14px;
  color: #666666;
  font-style: italic;
}

.legal-content {
  padding: 80px 0;
}

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

.content-wrapper h2 {
  font-size: 32px;
  margin: 40px 0 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.content-wrapper h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.content-wrapper h3 {
  font-size: 24px;
  margin: 24px 0 12px;
}

.content-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 16px;
}

.content-wrapper ul {
  margin: 16px 0;
  padding-left: 24px;
}

.content-wrapper li {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 8px;
  list-style: disc;
}

.content-wrapper a {
  color: #000000;
  text-decoration: underline;
}

.content-wrapper a:hover {
  color: #555555;
}

.rights-summary {
  padding: 80px 0;
  background-color: #fafafa;
}

.rights-summary h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.right-card {
  flex: 1 1 240px;
  max-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-left: 3px solid #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.right-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.right-card p {
  font-size: 14px;
  color: #666666;
}

.contact-info {
  text-align: center;
  font-size: 15px;
  color: #333333;
  margin-top: 32px;
}

.data-requests {
  padding: 80px 0;
  background-color: #fafafa;
}

.data-requests h2 {
  text-align: center;
  margin-bottom: 40px;
}

.text-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;
  border-left: 4px solid #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.text-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.text-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.text-section li {
  font-size: 15px;
  margin-bottom: 8px;
  list-style: disc;
}

.cookie-management {
  padding: 80px 0;
  background-color: #fafafa;
}

.cookie-management h2 {
  text-align: center;
  margin-bottom: 40px;
}

.course-terms {
  padding: 80px 0;
  background-color: #fafafa;
}

.course-terms h2 {
  text-align: center;
  margin-bottom: 40px;
}

.course-terms h3 {
  font-size: 24px;
  margin: 24px 0 16px;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.thank-you-hero h1 {
  margin-bottom: 16px;
}

.next-steps {
  padding: 80px 0;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 60px;
}

.steps-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 15px;
  color: #666666;
}

.suggested-content {
  padding: 80px 0;
  background-color: #fafafa;
}

.suggested-content h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #666666;
  margin-bottom: 60px;
}

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

.suggestion-card {
  flex: 1 1 280px;
  max-width: 340px;
  background-color: #ffffff;
  padding: 40px 32px;
  text-align: center;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.suggestion-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
}

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

.suggestion-card p {
  margin-bottom: 24px;
  color: #666666;
}

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

.contact-reminder {
  padding: 80px 0;
}

.contact-reminder h2 {
  text-align: center;
  margin-bottom: 24px;
}

.contact-reminder > .container > p {
  text-align: center;
  color: #666666;
  margin-bottom: 40px;
}

.contact-details {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background-color: #f5f5f5;
  border-left: 4px solid #000000;
  text-align: center;
}

.contact-details p {
  font-size: 16px;
  margin-bottom: 16px;
}

.thank-you-content {
  padding: 80px 0;
}

.thank-you-content h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.address-highlight {
  padding: 24px;
  background-color: #f5f5f5;
  border-left: 4px solid #000000;
  margin: 24px 0;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
}

.cookie-accept:hover {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}

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

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

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

.cookie-settings:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 2px;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h2 {
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  border: 1px solid #e0e0e0;
  margin-bottom: 16px;
  border-radius: 2px;
}

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

.cookie-category h3 {
  font-size: 18px;
  margin: 0;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background-color: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cookie-toggle.active {
  background-color: #000000;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s;
}

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

.cookie-category p {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  h4 { font-size: 18px; }
  p { font-size: 15px; }

  /* Layout */
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }

  /* Header */
  .main-nav { display: none; }
  .header-cta { display: none; }
  .mobile-menu-toggle { display: flex; }

  /* Hero */
  .hero { padding: 80px 0; }
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 17px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { width: 100%; }

  /* Cards */
  .feature-card,
  .service-card,
  .cuisine-card,
  .course-card { max-width: 100%; }

  /* Grids */
  .features-grid,
  .services-grid,
  .regions-grid,
  .testimonials-grid,
  .recipes-grid,
  .collections-grid,
  .cuisines-grid,
  .tips-grid,
  .courses-grid,
  .packages-grid,
  .cards-grid,
  .directions-grid { gap: 24px; }

  /* Footer */
  .footer-grid { gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .legal-nav { justify-content: center; }

  /* Filter */
  .filter-bar { flex-direction: column; }
  .filter-options { width: 100%; }
  .filter-select { width: 100%; }

  /* Tabs */
  .tabs,
  .category-tabs { gap: 8px; }
  .tab,
  .category-tab { font-size: 12px; padding: 10px 16px; }

  /* Cookie Banner */
  .cookie-content { flex-direction: column; }
  .cookie-buttons { width: 100%; }
  .cookie-btn { flex: 1; min-width: 120px; }

  /* Steps */
  .step-item { flex-direction: column; align-items: center; text-align: center; }
  
  /* CTA Banner */
  .cta-banner { padding: 60px 0; }
  .cta-banner h2 { font-size: 32px; }
  .cta-banner p { font-size: 17px; }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .btn-primary,
  .btn-secondary { padding: 14px 24px; font-size: 13px; }
  
  .hero h1 { font-size: 28px; }
  .hero-subtitle { font-size: 16px; }
  
  .service-card .price,
  .package-price { font-size: 28px; }
  
  .stat-number { font-size: 42px; }
}

/* ===== PRINT STYLES ===== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .header-cta,
  .cta-banner,
  .hero-buttons { display: none; }
  
  body { color: #000000; }
  a { text-decoration: underline; }
}