/* =======================
   CSS RESET & BASE STYLES
   ======================= */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #FCFBF8;
  color: #222;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: .01em;
  font-weight: 400;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #32785C;
  text-decoration: none;
  transition: color 0.15s;
}
a:focus, a:hover {
  color: #3F8C74;
  outline: none;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.2em;
}
strong, b {
  font-weight: bold;
}
em, i {
  font-style: italic;
}

/* ====== BRAND FONTS ====== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;1,700&family=Nunito:wght@400;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #264653;
  font-weight: 700;
  letter-spacing: .02em;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
  line-height: 1.12;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  line-height: 1.18;
}
h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.06rem;
  margin-bottom: 8px;
}
.subhead {
  font-size: 1.12rem;
  color: #32785C;
  margin-bottom: 22px;
  font-family: 'Nunito', Arial, sans-serif;
  font-style: italic;
}

/* ====== PASTEL COLOR PALETTE ====== */
:root {
  --primary: #32785C;
  --primary-light: #90CBBC;
  --secondary: #264653;
  --accent: #F4E9D8;
  --pastel-pink: #ffeaea;
  --pastel-peach: #FFE5D2;
  --pastel-mint: #E1F6EF;
  --pastel-blue: #DFEBFB;
  --pastel-yellow: #FFF9DA;
  --white: #FFFFFF;
  --text-dark: #222222;
  --text-light: #fff;
  --shadow-soft: 0 2px 8px rgba(112, 145, 140, 0.08);
  --shadow-card: 0 4px 24px rgba(82, 116, 109, 0.15);
  --border-radius: 20px;
  --radius-btn: 16px;
}

/* =========== LAYOUT SCAFFOLD ============ */
.container {
  width: 100%;
  max-width: 1140px;
  padding: 0 18px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  position: relative;
}
main > section:nth-child(even) {
  background: var(--pastel-mint);
}
main > section:nth-child(odd) {
  background: var(--accent);
}

@media (max-width: 650px) {
  .section {
    padding: 25px 4vw;
    margin-bottom: 34px;
    border-radius: 15px;
  }
}

/* =========== FLEX PATTERNS ============ */
.card-container, .card-grid, .feature-grid, .region-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 22px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.feature-grid {
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--pastel-mint);
  border-radius: var(--border-radius);
  padding: 28px 20px;
  flex: 1 1 210px;
  min-width: 220px;
  max-width: 310px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item img { width: 40px; height: 40px; align-self: flex-start; margin-bottom: 5px; }
.feature-item:hover {
  box-shadow: 0 8px 32px rgba(91,167,149,0.13);
  transform: translateY(-2px) scale(1.025);
}
.service-list,
.tips-list,
.values-list,
.workshop-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: disc inside;
}
.region-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.region-grid > div {
  background: var(--pastel-blue);
  border-radius: var(--border-radius);
  padding: 26px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  box-shadow: var(--shadow-soft);
}
.checklist-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.checklist-blocks h3 { margin-bottom: 9px; font-size: 1.11rem; color: var(--primary);}
.checklist-blocks ul { margin-left: 14px; }

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section, .region-grid, .card-grid, .feature-grid, .checklist-blocks {
    flex-direction: column;
    align-items: stretch;
  }
}

.content-grid {
  gap: 20px;
  justify-content: space-between;
}
@media (max-width:768px) {
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}

.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  background: var(--white);
}

/* ========== TESTIMONIALS ========== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-radius: var(--border-radius);
  background: var(--pastel-yellow);
  box-shadow: var(--shadow-card);
  min-width: 235px;
  max-width: 360px;
  flex: 1 1 305px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
}
.testimonial-card blockquote {
  font-family: 'Nunito', Arial, sans-serif;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.5;
  font-style: italic;
  margin: 0;
}
.testimonial-card .author {
  font-size: 0.98rem;
  color: var(--primary);
  margin-left: 12px;
  margin-top: 5px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 6px 36px rgba(180,170,72,0.13);
  background: #FFFDEB;
  transform: translateY(-2px) scale(1.018);
}
@media (max-width: 780px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: unset;
    flex: 1 1 100%;
  }
}

/* ========== NAVIGATION ========== */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 4px 18px rgba(237,232,210,0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4vw 12px 4vw;
  min-height: 76px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 16px;
  color: var(--secondary);
  border-radius: 16px;
  transition: background 0.15s, color 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--primary-light);
  color: var(--primary);
}
.main-nav .cta {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-btn);
  padding: 8px 20px;
  margin-left: 8px;
  transition: background 0.2s;
  font-size: 1rem;
  box-shadow: var(--shadow-soft);
}
.main-nav .cta:hover, .main-nav .cta:focus {
  background: var(--secondary);
  color: #fff !important;
}

/* ========== MOBILE NAV BURGER ========== */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 2.1rem;
  border-radius: 14px;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: background 0.13s, box-shadow 0.18s;
  z-index: 99;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--secondary);
}
@media (max-width: 950px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ============= MOBILE MENU ============= */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(249,244,255,0.93);
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.7,.03,.32,1.26);
  will-change: transform;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 6px 35px 0 rgba(0,0,0,0.08);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.8rem;
  color: var(--primary);
  margin: 24px 18px 0 0;
  cursor: pointer;
  z-index: 122;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  width: 100%;
  padding: 48px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.19rem;
  padding: 13px 18px;
  color: var(--secondary);
  border-radius: var(--radius-btn);
  width: 100%;
  transition: background 0.13s, color 0.13s;
  text-align: left;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--accent);
  color: var(--primary);
}
@media (max-width: 520px) {
  .mobile-nav {padding: 38px 11vw;}
  .mobile-menu-close {margin: 14px 8px 0 0;}
}

/* ========= BUTTONS & CTA =========== */
.cta-button, .cta-section .cta-button, .cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary) 65%, var(--primary-light) 100%);
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.11rem;
  font-weight: 700;
  padding: 13px 32px;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  box-shadow: 0 3px 16px rgba(50,120,92,0.07);
  transition: background 0.18s, box-shadow 0.17s, transform 0.12s;
  text-align: center;
  letter-spacing: .02em;
  text-decoration: none;
}
.cta-button:focus, .cta-button:hover, .cta:focus, .cta:hover {
  background: var(--secondary);
  color: #fff !important;
  box-shadow: 0 8px 40px rgba(50,80,132,0.08);
  transform: translateY(-2px) scale(1.017);
  outline: none;
}

/* ====== FOOTER ====== */
footer {
  background: var(--pastel-peach);
  padding: 46px 0 26px 0;
  box-shadow: 0 -4px 30px rgba(249,209,168,0.07);
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
  margin-top: 60px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-nav a, .footer-legal a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 15px;
  border-radius: 10px;
  transition: background 0.11s, color 0.13s;
}
.footer-nav a:hover, .footer-legal a:hover {
  background: var(--primary-light);
  color: var(--primary);
}
.social-media {
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-media img {
  width: 28px;
  height: 28px;
  filter: brightness(0.82);
  transition: filter 0.17s;
}
.social-media a:hover img {
  filter: brightness(0.4) sepia(1) hue-rotate(86deg) saturate(3);
}
@media (max-width: 760px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
    padding: 0 2vw;
  }
  footer {
    padding-top: 30px;
    border-top-left-radius: 13px; border-top-right-radius: 13px;
  }
}

/* ======= FORMS & CONTACT ========= */
.contact-info {
  padding: 17px 0 7px 0;
  font-size: 1rem;
  color: var(--primary);
  font-family: 'Nunito', Arial, sans-serif;
}
.contact-info a { color: var(--secondary); text-decoration: underline; }
.cta-section {
  margin-top: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cta-section .cta-button {margin-left: 0;}

/* ====== FILTER NAVIGATION (REZEPTE) ====== */
.filter-navigation {
  padding: 11px 0 8px 0;
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
}
.filter-navigation ul {
  display: flex;
  gap: 14px;
  list-style: none;
  margin-top: 0;
  margin-left: 0;
  padding-left: 0;
}
.filter-navigation li {
  background: var(--pastel-yellow);
  padding: 6px 13px;
  border-radius: 10px;
  color: var(--primary);
  font-weight: 600;
}

/* ====== LISTS & TYPOS ====== */
ul, ol {
  margin-bottom: 10px;
}
li {
  line-height: 1.7;
  margin-bottom: 5px;
}
.legal-text {
  background: var(--pastel-blue);
  border-radius: var(--border-radius);
  padding: 22px 18px 16px 18px;
  box-shadow: var(--shadow-soft);
}

/* ====== MODALS & OVERLAYS ====== */
[aria-modal='true'] {
  /* for a11y support */
}

/* ============== COOKIE BANNER & MODAL ============== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--pastel-mint);
  color: var(--secondary);
  box-shadow: 0 -2px 32px rgba(80,120,82,0.08);
  z-index: 2000;
  padding: 26px 5vw 20px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transition: transform 0.35s, opacity 0.25s;
}
.cookie-banner .cookie-banner-text {
  font-size: 1.01rem;
  font-family: 'Nunito', Arial, sans-serif;
  color: var(--secondary);
  flex: 1 1 190px;
  margin-bottom: 12px;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
  flex: 0 1 auto;
}
.cookie-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: var(--radius-btn);
  padding: 10px 26px;
  margin-right: 0;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: background 0.15s, box-shadow 0.17s, transform 0.11s;
}
.cookie-btn.cookie-settings {
  background: var(--secondary);
}
.cookie-btn.reject {
  background: var(--pastel-peach);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-btn:focus, .cookie-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
  outline: none;
  transform: translateY(-1px) scale(1.012);
}
.cookie-btn.cookie-settings:focus, .cookie-btn.cookie-settings:hover {
  background: var(--accent);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 22px 4vw 15px 4vw;
  }
  .cookie-banner .cookie-banner-buttons {
    gap: 10px;
  }
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 98vw;
  max-width: 420px;
  background: var(--pastel-peach);
  color: var(--secondary);
  border-radius: 20px;
  box-shadow: 0 8px 44px rgba(60, 100, 70, 0.19);
  z-index: 2200;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.25s;
  padding: 36px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 7px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  cursor: pointer;
}
.cookie-category {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category-label {
  margin-right: 7px;
  font-size: 1.04rem;
  color: var(--secondary);
  font-family: 'Nunito', Arial, sans-serif;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 20px;
  background: var(--primary-light);
  border-radius: 11px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-toggle:checked {
  background: var(--primary);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.15s;
}
.cookie-toggle:checked:before {
  transform: translateX(18px);
}


/* ====== UTILITY CLASSES ====== */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.w-100 { width: 100%; }
.maxw-500 { max-width: 500px; }
.shadow-soft { box-shadow: var(--shadow-soft); }
.rounded { border-radius: var(--border-radius); }
.transition { transition: all 0.18s; }

/* ===== RESPONSIVE TYPOGRAPHY/SIZES ==== */
@media (max-width: 780px) {
  h1 {font-size: 1.55rem;}
  h2 {font-size: 1.21rem;}
  h3 {font-size: 1.08rem;}
}
@media (max-width: 540px) {
  h1 {font-size: 1.23rem;}
  h2 {font-size: 1.1rem;}
}

/* ====== ANIMATIONS & MICRO-INTERACTIONS ====== */
.card, .feature-item, .testimonial-card, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.18s, background 0.17s, transform 0.15s, opacity 0.14s;
}
.cta-button, .cookie-btn {
  transition: background 0.17s, color 0.11s, box-shadow 0.11s, transform 0.11s;
}

/* ====== ACCENT DECORATIVE CLASSES (optional) ====== */
.decor-accent-circle {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 54px;
  height: 54px;
  background: var(--pastel-pink);
  border-radius: 50%;
  opacity: 0.29;
  z-index: 1;
  pointer-events: none;
}

/* ====== PAGE-SPECIFIC — REZEPT, TEAM, ETC. ====== */
.team-profile-short {
  background: var(--pastel-peach);
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(255,192,140,0.07);
  padding: 14px 18px;
  font-size: 1.01rem;
  margin-top: 6px;
}
.kursinfo {
  background: var(--pastel-mint);
  border-radius: 13px;
  padding: 12px 15px;
  font-size: 1rem;
  margin-top: 14px;
  box-shadow: 0 2px 8px rgba(120, 200, 160, 0.07);
}
.featured-recipes {
  background: var(--pastel-blue);
  border-radius: 11px;
  padding: 13px 18px;
  margin-top: 15px;
  box-shadow: var(--shadow-soft);
}
.featured-recipes ul {margin-top: 10px;}


/* ====== Z-INDEX LAYERS ====== */
header { z-index:30; }
.mobile-menu { z-index:120; }
.cookie-banner { z-index:2000; }
.cookie-modal { z-index:2200; }

/* ==== ACCESSIBILITY ===== */
:focus-visible, .cta-button:focus-visible, .main-nav a:focus-visible, .footer-nav a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}

/* === ENSURE NO OVERLAP === */
main > section, .section, .feature-grid, .testimonial-slider, .region-grid, .card-grid, .checklist-blocks {
  margin-bottom: 20px!important;
}
main > section:last-child, .section:last-child {margin-bottom: 0!important;}

/* ==== SCROLLBAR PASTEL ==== */
::-webkit-scrollbar { width: 8px; background: var(--accent); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 8px; }

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