/* =================================
   MODERN BOLD DESIGN SYSTEM
   Deutsche Küchenschätze CSS
   ================================= */

/* CSS RESET & NORMALIZE */
* {
  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;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* =================================
   MODERN BOLD TYPOGRAPHY
   ================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 24px;
}

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

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

h3 {
  font-size: 24px;
  font-weight: 800;
}

h4 {
  font-size: 20px;
  font-weight: 700;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.subheadline,
.hero-subheadline,
.section-subheadline {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #739989;
  margin-bottom: 24px;
}

.error-subheadline {
  font-size: 22px;
  font-weight: 700;
  color: #C84B31;
  margin-bottom: 16px;
}

strong {
  font-weight: 800;
}

/* =================================
   CONTAINER & LAYOUT (FLEXBOX ONLY)
   ================================= */

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

/* =================================
   HEADER & NAVIGATION
   ================================= */

header {
  background: linear-gradient(135deg, #C84B31 0%, #A63D26 100%);
  box-shadow: 0 4px 20px rgba(200, 75, 49, 0.3);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 16px 0;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  border-bottom-color: #F4E4C1;
  color: #F4E4C1;
  transform: translateY(-2px);
}

/* =================================
   MOBILE MENU
   ================================= */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #C84B31;
  color: #ffffff;
  border: 3px solid #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(200, 75, 49, 0.5);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #2D4A3E 0%, #1a2f26 100%);
  z-index: 1002;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 3px solid #ffffff;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 32px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  padding: 20px 0;
  border-bottom: 2px solid rgba(255,255,255,0.15);
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #F4E4C1;
  padding-left: 16px;
  border-bottom-color: #F4E4C1;
}

/* =================================
   BUTTONS (BOLD MODERN STYLE)
   ================================= */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #C84B31 0%, #A63D26 100%);
  color: #ffffff;
  border-color: #C84B31;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #A63D26 0%, #8a3321 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200, 75, 49, 0.4);
}

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

.btn-secondary:hover {
  background: #C84B31;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200, 75, 49, 0.4);
}

/* =================================
   HERO SECTIONS (BOLD STYLE)
   ================================= */

.hero,
.page-hero,
.error-hero,
.thank-you-hero {
  background: linear-gradient(135deg, #2D4A3E 0%, #1a2f26 100%);
  color: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 228, 193, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content,
.error-content,
.thank-you-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1,
.page-hero h1,
.error-hero h1,
.thank-you-hero h1 {
  color: #ffffff;
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.trust-indicators {
  margin-top: 40px;
  padding: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  border: 2px solid rgba(244, 228, 193, 0.3);
}

.trust-indicators p {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #F4E4C1;
}

.hero-badge {
  display: inline-block;
  background: #C84B31;
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 16px;
  margin-top: 24px;
  border: 3px solid #ffffff;
  box-shadow: 0 6px 20px rgba(200, 75, 49, 0.4);
}

.error-icon,
.thank-you-icon {
  font-size: 80px;
  margin-bottom: 24px;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

/* =================================
   SECTIONS (FLEXBOX LAYOUTS)
   ================================= */

.section,
.value-proposition,
.services-overview,
.testimonials,
.featured-collections,
.recipe-tips,
.cta-banner,
.course-benefits,
.upcoming-courses,
.regional-categories,
.time-categories,
.story-section,
.values-section,
.achievements,
.contact-methods,
.business-hours,
.support-categories,
.popular-pages,
.contact-help,
.next-steps,
.while-you-wait,
.legal-content {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section h2,
.value-proposition h2,
.services-overview h2,
.testimonials h2,
.featured-collections h2,
.recipe-tips h2,
.cta-banner h2,
.course-benefits h2,
.upcoming-courses h2,
.regional-categories h2,
.time-categories h2,
.story-section h2,
.values-section h2,
.achievements h2,
.contact-methods h2,
.business-hours h2,
.support-categories h2,
.popular-pages h2,
.contact-help h2,
.next-steps h2,
.while-you-wait h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #2D4A3E;
}

/* =================================
   GRID LAYOUTS (FLEXBOX ONLY)
   ================================= */

.value-grid,
.services-grid,
.testimonial-grid,
.collections-grid,
.tips-grid,
.benefits-grid,
.courses-grid,
.regions-grid,
.category-grid,
.values-grid,
.achievements-grid,
.contact-grid,
.categories-grid,
.page-links,
.steps-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

/* =================================
   CARDS (BOLD MODERN STYLE)
   ================================= */

.value-item,
.service-card,
.testimonial-card,
.collection-card,
.tip-card,
.benefit-item,
.course-card,
.region-card,
.category-card,
.achievement-item,
.contact-method,
.category-card,
.page-link-card,
.step-item,
.suggestion-card {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border: 4px solid #2D4A3E;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.value-item:hover,
.service-card:hover,
.collection-card:hover,
.tip-card:hover,
.benefit-item:hover,
.course-card:hover,
.region-card:hover,
.category-card:hover,
.contact-method:hover,
.page-link-card:hover,
.step-item:hover,
.suggestion-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(45, 74, 62, 0.3);
  border-color: #C84B31;
}

.service-card.highlight {
  background: linear-gradient(135deg, #C84B31 0%, #A63D26 100%);
  color: #ffffff;
  border-color: #F4E4C1;
  transform: scale(1.05);
}

.service-card.highlight h3,
.service-card.highlight .service-price {
  color: #ffffff;
}

.testimonial-card {
  background: #F4E4C1;
  border-color: #C84B31;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.value-icon,
.benefit-icon,
.method-icon,
.step-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.quote {
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.6;
}

.author,
.course-chef {
  font-weight: 800;
  color: #2D4A3E;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rating {
  color: #C84B31;
  font-size: 20px;
  font-weight: 900;
}

.service-price,
.course-price {
  font-size: 28px;
  font-weight: 900;
  color: #C84B31;
  margin: 16px 0;
  display: block;
}

.count,
.spots,
.course-date,
.course-level {
  font-weight: 700;
  color: #2D4A3E;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.signature-dishes,
.method-content,
.method-info {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-top: 12px;
}

/* =================================
   CTA BANNER
   ================================= */

.cta-banner {
  background: linear-gradient(135deg, #C84B31 0%, #A63D26 100%);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 20px;
  margin: 60px 20px;
  box-shadow: 0 12px 40px rgba(200, 75, 49, 0.3);
}

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

.cta-banner p {
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 600;
}

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

/* =================================
   ACHIEVEMENTS
   ================================= */

.achievement-item {
  text-align: center;
  background: linear-gradient(135deg, #2D4A3E 0%, #1a2f26 100%);
  color: #ffffff;
  border: 4px solid #F4E4C1;
}

.achievement-item .number {
  font-size: 48px;
  font-weight: 900;
  color: #F4E4C1;
  margin-bottom: 8px;
  display: block;
}

.achievement-item p {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

/* =================================
   LEGAL CONTENT
   ================================= */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h1 {
  font-size: 42px;
  margin-bottom: 32px;
  color: #2D4A3E;
  border-bottom: 4px solid #C84B31;
  padding-bottom: 16px;
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #2D4A3E;
  text-align: left;
}

.legal-content h3 {
  font-size: 20px;
  margin-top: 24px;
  color: #2D4A3E;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content strong {
  color: #C84B31;
  font-weight: 800;
}

/* =================================
   HOURS INFO & MISC
   ================================= */

.hours-info {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background: #F4E4C1;
  border: 4px solid #2D4A3E;
  border-radius: 16px;
  text-align: center;
}

.hours-info p {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hours-info .note {
  font-size: 14px;
  color: #666666;
  font-weight: 600;
  margin-top: 24px;
  font-style: italic;
}

.support-email {
  font-size: 18px;
  font-weight: 700;
  color: #C84B31;
  margin-top: 24px;
}

.mission {
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: #2D4A3E;
  padding: 24px;
  background: #F4E4C1;
  border-left: 6px solid #C84B31;
  margin: 32px 0;
  border-radius: 8px;
}

/* =================================
   FOOTER (BOLD MODERN STYLE)
   ================================= */

footer {
  background: linear-gradient(135deg, #2D4A3E 0%, #1a2f26 100%);
  color: #ffffff;
  padding: 60px 20px 24px;
  margin-top: 80px;
  border-top: 6px solid #C84B31;
}

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

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

.footer-section h3,
.footer-section h4 {
  color: #F4E4C1;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-section p {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 600;
}

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

.footer-nav a {
  color: #ffffff;
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.footer-nav a:hover {
  color: #F4E4C1;
  padding-left: 12px;
  border-bottom-color: #F4E4C1;
}

.footer-bottom {
  border-top: 2px solid rgba(244, 228, 193, 0.3);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  font-weight: 700;
  color: #F4E4C1;
  margin: 0;
}

/* =================================
   COOKIE CONSENT BANNER
   ================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2D4A3E 0%, #1a2f26 100%);
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -6px 30px rgba(0,0,0,0.3);
  z-index: 9999;
  border-top: 4px solid #C84B31;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

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

.cookie-banner button {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.cookie-accept {
  background: #C84B31;
  color: #ffffff;
  border-color: #C84B31;
}

.cookie-accept:hover {
  background: #A63D26;
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cookie-reject:hover {
  background: #ffffff;
  color: #2D4A3E;
}

.cookie-settings {
  background: transparent;
  color: #F4E4C1;
  border-color: #F4E4C1;
}

.cookie-settings:hover {
  background: #F4E4C1;
  color: #2D4A3E;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  z-index: 10000;
  max-width: 600px;
  width: 90%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  border: 4px solid #2D4A3E;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.cookie-modal h2 {
  color: #2D4A3E;
  margin-bottom: 24px;
  font-size: 28px;
}

.cookie-category {
  padding: 16px;
  background: #F4E4C1;
  border-radius: 8px;
  margin-bottom: 16px;
  border: 2px solid #2D4A3E;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2D4A3E;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  cursor: pointer;
}

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

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

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* =================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================= */

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1,
  .page-hero h1,
  .error-hero h1,
  .thank-you-hero h1 { font-size: 36px; }
  
  /* Navigation */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  
  /* Header */
  header { padding: 12px 0; }
  .logo img { height: 40px; }
  
  /* Sections */
  .section,
  .value-proposition,
  .services-overview,
  .testimonials { padding: 32px 16px; }
  
  /* Hero */
  .hero,
  .page-hero,
  .error-hero { padding: 48px 16px; }
  
  /* Buttons */
  .btn-primary,
  .btn-secondary { padding: 14px 28px; font-size: 14px; }
  
  /* Cards */
  .value-item,
  .service-card,
  .testimonial-card,
  .collection-card { padding: 24px; }
  
  /* Cookie Banner */
  .cookie-banner-content { flex-direction: column; }
  .cookie-banner-buttons { width: 100%; justify-content: center; }
  
  /* Footer */
  .footer-content { flex-direction: column; gap: 32px; }
  
  /* CTA Banner */
  .cta-banner { margin: 40px 16px; padding: 40px 16px; }
  .cta-banner h2 { font-size: 28px; }
  
  /* Legal Content */
  .legal-content h1 { font-size: 32px; }
  .legal-content h2 { font-size: 24px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container { padding: 0 40px; }
  
  .value-item,
  .service-card,
  .testimonial-card { flex: 1 1 calc(50% - 24px); }
}

@media (min-width: 1025px) {
  .value-item,
  .service-card { flex: 1 1 calc(33.333% - 24px); }
  
  .testimonial-card { flex: 1 1 calc(50% - 24px); }
}

/* =================================
   ANIMATIONS & TRANSITIONS
   ================================= */

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

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

.hero-content,
.error-content,
.thank-you-content {
  animation: fadeInUp 0.8s ease forwards;
}

/* =================================
   UTILITY CLASSES
   ================================= */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* =================================
   PRINT STYLES
   ================================= */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}