/* ======================================================================
   TÄGLICH GENIESSEN STYLE.CSS — NATURE ORGANIC STYLE
   Responsive, Flexbox-Only Layouts, Full Brand Identity Compliance
   ====================================================================== */

/* === CSS RESET + BASELINE NORMALIZATION === */
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 {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #f7f5f0;
  color: #343924;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #39734D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #284563;
  text-decoration: underline;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}

/* === TYPOGRAPHY SCALE & BRAND FONTS === */
h1, h2, h3, h4, h5, h6 {
  color: #284563;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
  line-height: 1.18;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  line-height: 1.22;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.25;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li {
  font-size: 1rem;
  line-height: 1.7;
}
strong {
  font-weight: 700;
}
blockquote {
  color: #39734D;
  background: #ebeee6;
  border-left: 4px solid #39734D;
  padding: 20px 28px;
  border-radius: 10px;
  margin: 30px 0 20px 0;
  font-style: italic;
}

/* === GENERAL LAYOUT STRUCTURE === */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* === ORGANIC SHAPE SECTIONS WITH EARTH TONES === */
section {
  background: #FFF4E1;
  border-radius: 28px;
  box-shadow: 0 2px 16px rgb(57 115 77 / 8%);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF4E1;
  border-radius: 28px;
}

/* === FLEXBOX CONTAINER PATTERNS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1.5px 12px rgb(57 115 77 / 8%);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 160px;
  padding: 28px 26px 18px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 6px 30px rgb(40 69 99 / 13%);
  transform: translateY(-4px) scale(1.018);
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  color: #284563;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgb(57 115 77 / 10%);
  margin-bottom: 20px;
  flex: 1 1 280px;
  min-width: 0;
}
.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.feature-grid > div, .team-grid > div {
  background: #f5f7f3;
  border-radius: 18px;
  padding: 22px 17px 16px 17px;
  flex: 1 1 230px;
  min-width: 210px;
  box-shadow: 0 1px 8px rgb(57 115 77 / 7%);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow .18s, transform .15s;
}
.feature-grid > div:hover,
.feature-grid > div:focus,
.team-grid > div:hover,
.team-grid > div:focus {
  box-shadow: 0 4px 20px rgb(40 69 99 / 12%);
  transform: translateY(-3px) scale(1.013);
}
.howto-highlights {
  margin-top: 20px;
  background: #ebeee6;
  border-radius: 16px;
  padding: 15px 18px 12px 18px;
}
.chef-recommendation, .brand-mission, .confirmation-message, .next-steps {
  background: #f5f7f3;
  border-radius: 18px;
  padding: 18px 20px 10px 20px;
  margin-bottom: 24px;
}

/* === HEADERS & NAVIGATION === */
header {
  background: #fff;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 1.5px 13px rgb(57 115 77 / 9%);
  margin-bottom: 30px;
  position: sticky;
  top: 0;
  z-index: 1030;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: #39734D;
  letter-spacing: 0.03em;
  padding: 12px 0 10px 0;
  border-bottom: 2.5px solid transparent;
  transition: border-color 0.18s, color 0.2s;
  font-weight: 600;
  border-radius: 4px;
}
.main-nav a:hover,
.main-nav a:focus,
.main-nav a.active {
  color: #284563;
  border-bottom: 2.5px solid #284563;
  background: #ecf6ea;
}
header .cta.primary {
  background: #39734D;
  color: #fff;
  border-radius: 20px;
  margin-left: 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  padding: 12px 28px;
  box-shadow: 0 2px 12px rgb(57 115 77 / 14%);
  letter-spacing: 0.03em;
  border: none;
  transition: background 0.18s, color 0.18s, transform .18s;
  display: inline-block;
  min-width: 160px;
  text-align: center;
}
header .cta.primary:hover,
header .cta.primary:focus {
  background: #284563;
  color: #fff;
  transform: translateY(-2px) scale(1.01);
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  background: #39734D;
  color: #fff;
  border-radius: 12px;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  border: none;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  margin-left: 16px;
  z-index: 1075;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #284563;
}
.mobile-menu {
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  max-width: 100vw;
  background: #fff4e1dc;
  box-shadow: -4px 0 30px rgba(40,69,99,0.13);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.66,.14,.38,1.01);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 20px 8px 0;
  font-size: 2.2rem;
  background: #39734D;
  color: #fff;
  border-radius: 14px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background .13s;
  z-index: 2100;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #284563;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100vw;
  max-width: 320px;
  padding: 38px 0 0 26px;
  gap: 18px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #39734D;
  font-weight: 600;
  padding: 18px 0 7px 0;
  border-radius: 4px;
  width: 100%;
  transition: color 0.18s, background 0.19s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ecf6ea;
  color: #284563;
}

/* Mobile menu full overlay fallback */
@media (max-width: 360px) {
  .mobile-menu, .mobile-nav {
    max-width: 100vw;
    padding-left: 4vw;
  }
}

/* === MAIN PAGE SPECIFIC FLEX LAYOUTS === */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
ul {
  margin-bottom: 22px;
}
ul li {
  margin-bottom: 13px;
  padding-left: 22px;
  position: relative;
}
ul li::before {
  content: '•';
  color: #39734d;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  top: 1px;
}
input[type=search], select {
  padding: 10px 16px 10px 16px;
  border: 1.5px solid #39734d2b;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 1.5px 5px rgb(57 115 77 / 6%);
  transition: border-color 0.14s;
  margin-right: 12px;
  margin-bottom: 12px;
}
input[type=search]:focus, select:focus {
  border-color: #39734D;
  outline: none;
}
label {
  font-weight: 600;
  color: #39734D;
}

/* === BUTTONS AND CTA === */
.cta,
button.cta {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 20px;
  background: #39734D;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 12px rgb(57 115 77 / 10%);
  margin: 20px 2px 0 0;
  cursor: pointer;
  text-align: center;
  transition: background .18s, color .15s, transform .16s, box-shadow .14s;
  min-width: 150px;
}
.cta.primary:focus,
.cta.primary:hover {
  background: #284563;
  color: #fff;
  box-shadow: 0 6px 24px rgb(40 69 99 / 15%);
  transform: translateY(-2px) scale(1.01);
}
.cta.secondary {
  background: #FFF4E1;
  color: #39734D;
  border: 2px solid #39734d36;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #39734D;
  color: #fff;
}

/* Inline icons in lists and contact */
.text-section img, .footer-contact img {
  display: inline;
  width: 1.15em;
  vertical-align: middle;
  margin-right: 9px;
}

/* === FOOTER === */
footer {
  margin-top: 44px;
  background: #ecf6ea;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -1.5px 13px rgb(57 115 77 / 9%);
  color: #284563;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 10px 20px 10px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 160px;
}
.footer-menu a {
  color: #39734D;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.15s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: #284563;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-social {
  display: flex;
  gap: 17px;
  margin-top: 12px;
}
.footer-social a {
  background: #39734D;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 100px;
  transition: background 0.16s;
}
.footer-social a:hover, .footer-social a:focus {
  background: #284563;
}
.footer-social img {
  width: 24px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 20000;
  background: #f5f7f3;
  color: #284563;
  padding: 24px 12px 20px 12px;
  box-shadow: 0 -3px 30px rgb(40 69 99 / 13%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  border-radius: 22px 22px 0 0;
  transition: transform .33s, opacity .2s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.cookie-btn,
.cookie-banner button {
  padding: 11px 19px;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  margin: 0 5px 6px 0;
  background: #39734D;
  color: #fff;
  transition: background 0.13s, color .11s, transform .13s;
  outline: none;
}
.cookie-btn:focus,
.cookie-btn:hover,
.cookie-banner button:focus,
.cookie-banner button:hover {
  background: #284563;
}
.cookie-btn.settings {
  background: #FFF4E1;
  color: #39734D;
  border: 2px solid #39734d38;
}
.cookie-btn.settings:focus, .cookie-btn.settings:hover {
  background: #39734D;
  color: #fff;
}

/* COOKIE PREFERENCES MODAL === */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,63,46,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 21000;
  pointer-events: none;
  opacity: 0;
  transition: opacity .24s;
}
.cookie-modal.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal-inner {
  background: #FFF4E1;
  color: #284563;
  border-radius: 22px;
  box-shadow: 0 8px 40px rgb(40 69 99 / 14%);
  padding: 34px 24px 28px 24px;
  max-width: 420px;
  width: 88vw;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
  animation: cookieModalAppear .30s cubic-bezier(.66,.14,.38,1.01);
}
@keyframes cookieModalAppear {
  0% { opacity: 0; transform: scale(0.81); }
  72% { opacity: 1; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #39734D;
  color: #fff;
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 1.4rem;
  transition: background .13s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: #284563;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 19px 0;
}
.category-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.category-toggle label {
  font-weight: 600;
  margin-left: 0;
  color: #39734D;
}
.category-toggle input[type=checkbox]:not(:checked) + label {
  opacity: 0.7;
}
.cookie-toggle-switch {
  width: 40px;
  height: 21px;
  background: #e0e8e7;
  border-radius: 21px;
  position: relative;
  transition: background .13s;
}
.cookie-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-switch:before {
  content: '';
  position: absolute;
  left: 2px; top: 2.5px;
  width: 16px; height: 16px;
  background: #39734D;
  border-radius: 100px;
  transition: left .12s, background .13s;
}
.cookie-toggle-switch input:checked + .switch-slider {
  background: #39734D;
}
.cookie-toggle-switch input:checked + .switch-slider:before {
  background: #39734D;
  left: 21px;
}
.switch-slider {
  display: block;
  width: 40px;
  height: 21px;
  border-radius: 21px;
  background: #e0e8e7;
  transition: background .13s;
}
.switch-slider:before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  background: #39734D;
  border-radius: 100px;
  position: relative;
  left: 2px; top: 2.5px;
  transition: left .12s, background .13s;
}
input[type=checkbox]:checked + .switch-slider {
  background: #39734D;
}
input[type=checkbox]:checked + .switch-slider:before {
  background: #ffffff;
  left: 21px;
}

/* === RESPONSIVENESS: MOBILE-FIRST / FLEX DIRECTION SWITCHES === */
@media (max-width: 1000px) {
  .footer-main {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .feature-grid, .team-grid {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .content-grid,
  .feature-grid,
  .team-grid,
  .card-container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  header .container {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 7px;
    min-height: 54px;
  }
  .main-nav, header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: 99vw;
    padding: 0 7px;
  }
  .content-wrapper {
    max-width: 99vw;
    padding: 0;
  }
  section, .section {
    padding: 22px 6px 24px 6px;
    border-radius: 16px;
  }
  .testimonial-card {
    padding: 13px 8px;
    min-width: 0;
  }
}
@media (max-width: 500px) {
  section, .section {
    margin-bottom: 37px;
    padding: 14px 0px 21px 0px;
    border-radius: 12px;
  }
  .confirm-message, .next-steps, .brand-mission {
    padding: 10px 6px 8px 6px;
    border-radius: 10px;
  }
}

/* === FORMS & MISC === */
.confirmation-message, .next-steps {
  margin-bottom: 16px;
}

/* === VISUAL ORGANIC ACCENTS & EFFECTS === */
section::before {
  content: '';
  display: block;
  width: 84px; height: 55px;
  background: rgba(57,115,77,0.13);
  border-radius: 90px 120px 60px 20px / 74px 18px 90px 28px;
  position: absolute;
  left: -30px; top: -19px;
  z-index: 0;
}
section:nth-child(even)::before {
  background: rgba(40,69,99,0.09);
}

/* === MICRO-INTERACTIONS === */
a, .cta, button, .feature-grid > div, .team-grid > div, .card {
  transition: color .19s, background .16s, transform .13s, box-shadow .15s;
}

/* === MISC: UTILITIES & ACCESSIBILITY === */
.sr-only {
  position: absolute;
  width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
[hidden], .hide { display: none !important; }

/* === PREVENT OVERLAPPING AND SHAKE === */
.card, .testimonial-card, .feature-grid > div, .team-grid > div, .section, section {
  box-sizing: border-box;
}
.testimonial-card p {
  font-size: 1rem;
  color: #284563;
  margin-bottom: 0.5em;
}
.testimonial-card strong {
  color: #39734D;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #39734D;
}

/* === COLOR CONTRAST (TESTIMONIALS/REVIEWS) === */
.testimonial-card,
.testimonial-card p,
.testimonial-card span,
.testimonial-card strong {
  background: #fff !important;
  color: #284563 !important;
}

/* === SPECIAL BOXES === */
.confirmation-message, .next-steps {
  color: #284563;
  background: #f5f7f3;
  border-radius: 18px;
  padding: 17px 18px;
}

/* === INPUT FOCUS === */
input:focus, select:focus, textarea:focus {
  outline: 2px solid #39734D;
  outline-offset: 2px;
  box-shadow: 0 0 4px #39734d46;
}

/* === OVERRIDE TABLES === */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  font-size: 1rem;
}
th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ebeee6;
}

/* ========== END of style.css =========== */
