/* ========================
   CSS RESET & BASELINE
   ======================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F8FAFB;
  color: #2A4056;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #2A4056;
  text-decoration: none;
  transition: color 0.18s;
}
a:focus {
  outline: 2px solid #F7BB75;
  outline-offset: 1px;
}

/* ========================
   COLOR PALETTE (SOFT PASTEL)
   ======================== */
:root {
  --primary: #2A4056;
  --secondary: #D2E7E3;
  --accent: #F7BB75;
  --pastel-blue: #D0E6FF;
  --pastel-mint: #E5F6F2;
  --pastel-pink: #FDEAEC;
  --pastel-lavender: #EBE9F9;
  --white: #fff;
  --gray: #F8FAFB;
  --shadow: 0 2px 16px rgba(42,64,86,0.10);
  --border-radius: 18px;
}

/* ========================
   TYPOGRAPHY
   ======================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  line-height: 1.17;
}
h2 {
  font-size: 1.65rem;
  margin-bottom: 16px;
  line-height: 1.22;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.06rem;
}
p, ul, ol, li {
  font-size: 1rem;
  color: var(--primary);
}
.lead {
  font-size: 1.18rem;
  margin-bottom: 18px;
  color: #415877;
  font-family: 'Open Sans', Arial, sans-serif;
}

strong {
  font-weight: 700;
  color: var(--primary);
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
}

/* ========================
   SHARED LAYOUT & FLEXBOX FOUNDATION
   ======================== */
.container {
  width: 94%;
  max-width: 1190px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 850px;
  background: transparent;
}

/* Flex containers (MANDATORY PATTERNS) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 24px 18px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--pastel-lavender);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 480px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Spacing Utility */
.mb-32 { margin-bottom: 32px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-16 { margin-bottom: 16px !important; }

/* ========================
   HEADER & NAVIGATION
   ======================== */
header {
  background: linear-gradient(90deg, var(--pastel-mint) 60%, var(--pastel-lavender) 100%);
  box-shadow: 0 1px 8px 0 rgba(42,64,86,.07);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  position: relative;
}
.logo img {
  height: 50px;
  width: auto;
  margin-right: 9px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.desktop-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--primary);
  padding: 6px 11px;
  border-radius: 12px;
  transition: background 0.2s, color 0.18s;
}
.desktop-nav a:hover, .desktop-nav a.active {
  background: var(--accent);
  color: #2A4056;
}
.cta-btn {
  margin-left: 17px;
  padding: 9px 28px;
  font-size: 1rem;
  border-radius: 20px;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 1px 10px rgba(42,64,86,0.07);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.18s, box-shadow 0.18s;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFD595;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(247, 187, 117, 0.13);
}

/* Hamburger Button for Mobile */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  margin-left: 17px;
  transition: color 0.20s;
  z-index: 50;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--accent);
}

/* ========================
   MOBILE NAVIGATION
   ======================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(210,231,227,0.99);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(.8,.01,.33,1), opacity 0.33s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.4rem;
  background: none;
  border: none;
  color: var(--primary);
  align-self: flex-end;
  margin: 22px 26px 10px 0;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  gap: 0;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: var(--primary);
  width: 100%;
  padding: 15px 34px;
  border-radius: 0 999px 999px 0;
  transition: background 0.17s, color 0.15s;
  margin-bottom: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

/* ========================
   HERO & SECTION STYLES
   ======================== */
.hero {
  background: linear-gradient(170deg, var(--pastel-blue) 60%, var(--pastel-pink) 100%);
  border-radius: 0 0 32px 32px;
  padding: 54px 0 44px 0;
  min-height: 240px;
  margin-bottom: 44px;
  box-shadow: 0 2px 32px 2px rgba(210, 231, 227, 0.2);
}
.hero .content-wrapper {
  text-align: center;
  padding: 0 12px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--gray);
  border-radius: var(--border-radius);
  box-shadow: 0 1px 6px 0 rgba(184, 211, 224, 0.13);
}
.text-section {
  background: var(--pastel-mint);
  padding: 35px 24px;
  border-radius: var(--border-radius);
  margin-bottom: 32px;
  box-shadow: 0 2px 14px 0 rgba(210, 231, 227, 0.12);
}

/* Feature grid and items */
.features-grid,
.feature-grid,
.services-grid,
.tips-grid,
.workshops-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 20px;
}
.feature, .service, .tip, .workshop, .recipe {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 300px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.16s;
}
.feature:hover, .service:hover, .tip:hover, .workshop:hover, .recipe:hover {
  box-shadow: 0 6px 28px rgba(176,210,220,0.16);
  transform: translateY(-3px) scale(1.025);
}
.feature img {
  height: 38px;
  width: 38px;
  margin-bottom: 14px;
}

.services-grid {
  gap: 28px;
  margin-bottom: 30px;
}
.service strong {
  font-size: 1.12rem;
  color: var(--accent);
  margin-top: 12px;
  display: block;
}

/* ========================
   TESTIMONIALS & RATINGS
   ======================== */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  flex: 1 1 260px;
  background: var(--pastel-lavender);
  color: #25324A;
  border-radius: var(--border-radius);
  box-shadow: 0 3px 16px 0 rgba(170,180,200,0.07);
  padding: 24px 18px;
  min-width: 220px;
  max-width: 410px;
  font-size: 1.07rem;
  transition: box-shadow 0.18s, transform 0.15s;
}
.testimonial-card p {
  color: #222e41;
  margin-bottom: 14px;
}
.testimonial-name {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  background: #EDE4FC;
  padding: 5px 12px;
  border-radius: 10px;
  align-self: flex-end;
}
.rating-overview {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.11rem;
  font-weight: 600;
  color: var(--accent);
}
.rating-overview img {
  height: 32px;
  width: auto;
}

/* =========================
   FAQ ACCORDION
   ========================= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--pastel-lavender);
  border-radius: var(--border-radius);
  padding: 20px 17px;
  box-shadow: 0 2px 12px 0 rgba(153,129,197,0.09);
  transition: box-shadow 0.17s;
}
.faq-item h3 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 9px;
  font-weight: 600;
}
.faq-item p {
  color: #293C51;
}

/* ==========================
   CONTACT SECTIONS
   ========================== */
.contact-row, .contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
}
.contact-row > div, .contact-item {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 1px 7px 0 rgba(42,64,86,0.08);
  padding: 10px 16px;
  gap: 8px;
  font-size: 1rem;
  min-width: 190px;
}
.contact-row img, .contact-item img {
  height: 22px;
  width: 22px;
  opacity: 0.85;
}
.map-block {
  background: var(--pastel-blue);
  border-radius: 18px;
  padding: 23px 18px;
  display: flex;
  align-items: center;
  gap: 21px;
}

/* ==========================
   TABLES & LISTS
   ========================== */
.pros-cons-table {
  width: 100%;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  margin: 27px 0;
  border-collapse: collapse;
  box-shadow: 0 2px 12px 0 rgba(75,110,125,0.06);
}
.pros-cons-table th {
  background: var(--pastel-mint);
  color: var(--primary);
  font-size: 1.04rem;
  font-weight: 600;
  padding: 13px 8px;
}
.pros-cons-table td {
  padding: 13px 8px;
  border-top: 1px solid #e5eeec;
  font-size: 0.98rem;
  color: #294056;
}

.produktlisten ul, .recipes-list, .workshops-list {
  margin-top: 12px;
}

/* ==========================
   FOOTER
   ========================== */
footer {
  background: linear-gradient(95deg, var(--pastel-blue) 60%, var(--pastel-mint) 100%);
  color: var(--primary);
  margin-top: 40px;
  padding-top: 40px;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -2px 26px 0 rgba(190,225,228,0.13);
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}
.footer-row .logo img {
  height: 38px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  color: var(--primary);
  opacity: 0.92;
  font-size: 1.06rem;
}
.footer-nav a:hover {
  color: var(--accent);
}
.footer-contact, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.99rem;
}
.footer-contact img, .footer-social img {
  vertical-align: middle;
  height: 18px;
  width: 18px;
  margin-right: 7px;
  opacity: 0.78;
}
.footer-social {
  gap: 14px;
  flex-direction: row;
  align-items: center;
  margin-top: 12px;
}
.footer-social a {
  background: var(--white);
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 1px 8px 0 rgba(190,215,228,0.11);
  transition: background 0.15s, box-shadow 0.16s;
}
.footer-social a:hover, .footer-social a:focus {
  background: var(--pastel-pink);
  box-shadow: 0 2px 14px 0 rgba(247,187,117,0.10);
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #e6eaf5;
  padding: 18px 0 2px 0;
  font-size: 0.99rem;
  opacity: 0.85;
}

/* ==========================
   BUTTONS & LINK STYLES
   ========================== */
button,
input[type=button],
input[type=submit] {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 28px;
  cursor: pointer;
  box-shadow: 0 1px 8px 0 rgba(255,203,63,0.07);
  transition: background 0.19s, color 0.17s, box-shadow 0.17s;
}
button:hover, button:focus,
input[type=button]:hover, input[type=button]:focus,
input[type=submit]:hover, input[type=submit]:focus {
  background: #FFD595;
  color: var(--primary);
}

/* ==========================
   COOKIE CONSENT BANNER
   ========================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: rgba(255,255,255,0.98);
  border-top: 3px solid var(--accent);
  padding: 32px 20px 34px 20px;
  box-shadow: 0 -2px 20px rgba(42, 64, 86, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 1.02rem;
  transition: transform 0.35s cubic-bezier(.42,2,.58,.87), opacity 0.28s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-message {
  color: var(--primary);
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  padding: 8px 24px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 18px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0 5px 5px 0;
  transition: background 0.16s, color 0.13s;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.cookie-banner .cookie-btn.settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .cookie-btn.reject {
  background: var(--pastel-lavender);
  color: #715289;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #FFD595;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #D0E6FF;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #EDE4FC;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(42, 64, 86, 0.22);
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.21s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-preferences {
  background: #fff;
  border-radius: 21px;
  box-shadow: 0 3px 32px 0 rgba(42, 64, 86, 0.15);
  padding: 38px 24px 28px 24px;
  max-width: 420px;
  min-width: 295px;
  text-align: left;
  position: relative;
}
.cookie-preferences h3{
  margin-bottom: 17px;
  font-size: 1.18rem;
  color: var(--primary);
}
.cookie-preferences .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}
.cookie-category label {
  font-size: 1.02rem;
  color: var(--primary);
}
.cookie-category .toggle-switch {
  width: 38px;
  height: 22px;
  background: var(--pastel-mint);
  border-radius: 11px;
  margin-right: 7px;
  transition: background 0.17s;
  position: relative;
  flex-shrink: 0;
}
.cookie-category input[type=checkbox] {
  display: none;
}
.cookie-category .slider {
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: var(--secondary);
  border-radius: 50%;
  transition: left 0.18s, background 0.14s;
}
.cookie-category input[type=checkbox]:checked + .slider {
  left: 19px;
  background: var(--accent);
}
.cookie-modal .cookie-modal-actions {
  margin-top: 25px;
  display: flex;
  gap: 17px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 11px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.65rem;
  color: var(--primary);
  cursor: pointer;
}

/* ==========================
   LEGAL / POLICY STYLES
   ========================== */
.legal-section {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 1px 8px 0 rgba(153,129,197,0.09);
  padding: 38px 24px;
  margin-bottom: 45px;
  font-size: 1.03rem;
}
.legal-section h1 {
  margin-bottom: 14px;
}
.legal-section h2, .legal-section h3 {
  margin-top: 18px;
}
.legal-section ul {
  margin-bottom: 20px;
}

/* ==========================
   MEDIA QUERIES & RESPONSIVE
   ========================== */
@media (max-width: 1180px) {
  .footer-row { gap: 22px; }
}
@media (max-width: 900px) {
  .features-grid, .feature-grid, .services-grid, .tips-grid, .testimonials-slider, .workshops-list {
    gap: 17px;
  }
  .footer-row { flex-wrap: wrap; gap: 18px; }
}
@media (max-width: 768px) {
  .container, .content-wrapper, .hero .content-wrapper {
    max-width: 98vw;
    padding-left: 0;
    padding-right: 0;
  }
  header .container {
    height: 62px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .desktop-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding-top: 35px;
    padding-bottom: 30px;
    border-radius: 0 0 19px 19px;
    min-height: 160px;
  }
  .content-wrapper {
    padding: 0 2px;
  }
  .features-grid, .feature-grid, .services-grid, .tips-grid, .workshops-list, .testimonials-slider {
    flex-direction: column;
    gap: 15px;
  }
  .feature, .service, .tip, .workshop, .recipe, .testimonial-card {
    min-width: unset;
    max-width: 98vw;
  }
  .section, .text-section, .legal-section {
    padding-left: 13px;
    padding-right: 13px;
  }
  .contact-row, .contact-list, .footer-row {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
  .footer-row .logo img {
    margin-bottom: 6px;
  }
  .footer-social {
    margin-bottom: 12px;
  }
  .footer-bottom {
    font-size: 0.92rem;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.36rem; }
  h2 { font-size: 1.03rem; }
  .lead { font-size: 0.99rem; }
}

/* =========================
   TRANSITIONS & MICRO-ANIMATIONS
   ========================= */
.card, .feature, .service, .tip, .workshop, .recipe, .testimonial-card, .faq-item {
  transition: box-shadow .18s, transform 0.16s;
}
a, button, .cta-btn, .cookie-btn {
  transition: background .17s, color .14s, box-shadow .13s;
}

/* Subtle fade-in for main content (optional) */
main, .section, .content-wrapper, .hero {
  animation: fadeInSoft 0.6s cubic-bezier(.85, 0.09, 0.35, 1);
  will-change: opacity, transform;
}
@keyframes fadeInSoft {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

/* =========================
   HELPER UTILITIES
   ========================= */
.bg-accent { background: var(--accent); color: var(--primary); }
.bg-mint { background: var(--pastel-mint); color: var(--primary); }
.bg-pink { background: var(--pastel-pink); color: var(--primary); }
.rounded { border-radius: var(--border-radius); }
.shadow { box-shadow: var(--shadow); }
.overflow-hidden { overflow: hidden; }

/* Remove default button styles on icons */
button:active, .mobile-menu-close:active, .mobile-menu-toggle:active {
  outline: none;
}

/* =========================
   ACCESSIBILITY
   ========================= */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}


/* =========================
   PASTEL GRADIENT OVERLAYS (FOR DREAMY LOOK)
   ========================= */
.hero:after {
  content: '';
  display: block;
  position: absolute;
  pointer-events: none;
  left: 0; top: 0; width: 100%; height: 100%;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(246,225,255,0.04) 50%, rgba(247,238,214,0.10) 100%);
  z-index: 1;
}


/* ===========
   END OF CSS
   =========== */