/* Reset & Normalize */
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, caption, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FAF7F0;
  color: #1e3322;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: #72b98c; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #D9A441; }
button, input[type=submit], .cta {
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #285739;
  margin-bottom: 12px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; }
p, ul, ol, li, address { font-size: 1rem; margin-bottom: 10px; line-height: 1.7; }
strong { font-weight: 700; }

/* Containers */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 16px 0 rgba(40,87,57,0.07);
  transition: box-shadow 0.2s;
}
.section:last-child {
  margin-bottom: 0;
}

/* Gradient Hero Sections */
.hero, .about-hero, .recipes-hero, .laenderkuechen-hero, .kochkurse-hero, .food-styling-hero, .kontakt-hero, .thank-you {
  background: linear-gradient(105deg,#FAF7F0 40%, #D9A441 100%);
  padding: 60px 0 40px 0;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  box-shadow: 0 6px 28px 0 rgba(40,87,57,0.10);
}
.hero .content-wrapper, .about-hero .content-wrapper, .recipes-hero .content-wrapper, .laenderkuechen-hero .content-wrapper, .kochkurse-hero .content-wrapper, .food-styling-hero .content-wrapper, .kontakt-hero .content-wrapper, .thank-you .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}

/* Navbars */
header {
  background: #fff;
  border-bottom: 2px solid #e5e5e5;
  position: relative;
  z-index: 30;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 24px;
  justify-content: flex-start;
  flex-wrap: wrap;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  padding: 8px 18px;
  border-radius: 22px;
  color: #285739;
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
  background: none;
}
.main-nav a.cta {
  background: linear-gradient(90deg, #285739 65%, #D9A441 100%);
  color: #fff;
  box-shadow: 0 1px 9px 0 rgba(40,87,57,0.14);
  transition: box-shadow 0.18s, background 0.18s;
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: #285739;
  color: #fff;
  box-shadow: 0 2px 18px 0 rgba(217,164,65,0.18);
}
.main-nav a:hover:not(.cta), .main-nav a:focus:not(.cta) {
  background: #FAF7F0;
  color: #D9A441;
}
.main-nav img {
  height: 36px;
  width: auto;
  margin-right: 16px;
  vertical-align: middle;
}

/* Mobile burger menu button */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  font-size: 2rem;
  color: #285739;
  padding: 10px 18px;
  border-radius: 14px;
  position: absolute;
  right: 16px;
  top: 12px;
  z-index: 44;
  outline: none;
  transition: background 0.15s, box-shadow 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #D9A441;
  color: #fff;
  box-shadow: 0 1px 8px 0 rgba(40,87,57,0.12);
}

/* MOBILE MENU Styles */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #FAF7F0;
  z-index: 99;
  box-shadow: 0 0 32px 6px rgba(40,87,57,0.16);
  transform: translateX(-100%);
  transition: transform 0.30s cubic-bezier(.77,0,.18,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #285739;
  align-self: flex-end;
  margin: 28px 28px 12px 0;
  cursor: pointer;
  outline: none;
  transition: color 0.15s, background 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #D9A441;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 12px 34px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #285739;
  font-weight: 600;
  padding: 11px 10px;
  font-size: 1.12rem;
  border-radius: 16px;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D9A441;
  color: #fff;
}

/* Hero Primary CTA Button */
.cta {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 28px;
  background: linear-gradient(90deg, #285739 75%, #D9A441 100%);
  font-size: 1.1rem;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  outline: none;
  margin-top: 12px;
  box-shadow: 0 2px 12px 0 rgba(40,87,57,0.13);
  transition: box-shadow 0.18s, background 0.18s, transform 0.13s;
  text-align: center;
  cursor: pointer;
}
.cta:hover, .cta:focus {
  background: #D9A441;
  color: #285739;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 6px 24px 0 rgba(217,164,65,0.16);
}

/* Features List */
.features ul, .about-teaser ul, .services-teaser ul, .services-list ul, .how-it-works ul, .how-it-works ol,
.recipe-categories ul, .recipe-tips ul, .country-highlights .country-grid, .brand-values ul, .kontakt-form-section ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 8px;
  margin-bottom: 18px;
}
.features ul li, .about-teaser ul li, .services-teaser ul li, .services-list ul li, .how-it-works ul li,
.recipe-categories ul li, .recipe-tips ul li, .brand-values ul li, .kontakt-form-section ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  background: rgba(217,164,65,0.10);
  border-radius: 10px;
  padding: 10px 16px;
  color: #285739;
  box-shadow: 0 1px 6px 0 rgba(40,87,57,0.03);
}
.features ul li img, .kontakt-form-section ul li img {
  width: 28px; height: 28px;
}

/* Section Spacing Patterns */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; 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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Testimonial Cards */
.testimonial-card {
  margin: 0 0 20px 0;
  background: #fff;
  color: #285739;
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 rgba(40,87,57,0.06);
  padding: 22px 28px;
  align-items: center;
  gap: 20px;
  font-size: 1.08rem;
  min-width: 0;
  min-height: 75px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.testimonial-card span {
  display: block;
  font-weight: 600;
  color: #D9A441;
  font-size: 0.99rem;
  margin-top: 12px;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 4px 24px 0 rgba(217,164,65,0.23);
  transform: translateY(-2px);
}

/* Cards & Grids */
.card {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 12px 0 rgba(40,87,57,0.09);
  padding: 30px 36px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.card:hover, .card:focus {
  box-shadow: 0 7px 28px 0 rgba(217,164,65,0.15);
  transform: scale(1.020);
}
.card-content {
  display: flex; flex-direction: column; justify-content: center;
  gap: 13px;
}
.card-container { gap: 24px; }

/* Buttons + Inputs */
button, input[type=button], input[type=submit] {
  background: linear-gradient(90deg, #285739 70%, #D9A441 100%);
  color: #fff;
  padding: 10px 26px;
  border: none;
  border-radius: 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 1px 9px 0 rgba(40,87,57,0.09);
  transition: background 0.17s, color 0.13s, box-shadow 0.13s, transform 0.11s;
}
button:hover, button:focus, input[type=submit]:hover, input[type=submit]:focus {
  background: #D9A441;
  color: #285739;
  box-shadow: 0 6px 20px 0 rgba(217,164,65,0.13);
  transform: translateY(-1px) scale(1.018);
}
input[type=search], input[type=text], input[type=email], textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 18px;
  border: 1.5px solid #285739;
  border-radius: 14px;
  background: #FAF7F0;
  color: #285739;
  margin-bottom: 12px;
  width: 100%;
  transition: border-color 0.13s, box-shadow 0.13s;
  box-shadow: 0 1px 5px 0 rgba(40,87,57,0.06);
}
input[type=search]:focus, input[type=text]:focus, input[type=email]:focus, textarea:focus {
  border-color: #D9A441;
  outline: none;
}

/* Footer */
footer {
  background: #285739;
  color: #fff;
  padding: 32px 0 0 0;
}
.footer-wrapper {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1.5px solid #487952;
  flex-wrap: wrap;
}
.footer-wrapper img {
  max-width: 54px; width: 100%; height: auto;
  margin-bottom: 8px;
}
.footer-wrapper span {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #FAF7F0;
  font-weight: 400;
  font-size: 1rem;
}
.footer-nav {
  display: flex; flex-direction: column; gap: 13px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  padding: 4px 0;
  position: relative;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #D9A441;
}
address {
  font-style: normal;
  color: #FAF7F0;
  font-size: 0.98rem;
}
.footer-bottom {
  display: flex; flex-direction: row; align-items: center; justify-content: center;
  padding: 20px 0 6px 0;
  color: #D9A441;
  font-size: 0.95rem;
}

/* Cards and grids for .country-highlights and .story-blurbs */
.country-grid {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: flex-start;
}
.country-grid > div {
  background: #FAF7F0;
  border-left: 6px solid #D9A441;
  border-radius: 14px;
  box-shadow: 0 1.5px 12px 0 rgba(40,87,57,0.05);
  padding: 18px 22px;
  min-width: 220px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  transition: box-shadow 0.13s, transform 0.13s;
}
.country-grid > div:hover, .country-grid > div:focus {
  box-shadow: 0 4px 22px 0 rgba(217,164,65,0.14);
  transform: scale(1.018);
}
.story-blurbs {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.story-blurbs > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 10px 0 rgba(40,87,57,0.05);
  padding: 22px 22px;
  flex: 1 1 260px;
}
.story-blurbs a {
  display: inline-block;
  margin-top: 14px;
  color: #285739;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: #D9A441;
  border-radius: 14px;
  padding: 7px 20px;
  transition: background 0.16s, color 0.15s;
}
.story-blurbs a:hover, .story-blurbs a:focus {
  background: #285739;
  color: #fff;
}

/* Forms */
.kontakt-form-section ul li a {
  color: #285739;
  font-weight: 700;
  margin-left: 4px;
}
.kontakt-form-section .cta {
  margin-top: 20px;
}

/* Responsive design */
@media (max-width: 1050px) {
  .footer-wrapper { flex-direction: column; gap: 30px; }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 14px;
    padding: 10px 10px;
    font-size: 0.99rem;
  }
  .footer-wrapper { gap: 18px; padding-bottom: 22px; }
  .card { padding: 22px 14px; }
  .country-grid > div, .story-blurbs > div { min-width: 160px; padding: 15px 12px; }
}
@media (max-width: 768px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: inline-block; }
  .footer-wrapper, .container {
    padding-left: 13px !important; padding-right: 13px !important;
  }
  .section { padding: 28px 10px; }
  .hero, .about-hero, .recipes-hero, .laenderkuechen-hero, .kochkurse-hero, .food-styling-hero, .kontakt-hero, .thank-you {
    padding: 36px 0 18px 0;
    border-bottom-left-radius: 23px;
    border-bottom-right-radius: 23px;
  }
  .content-wrapper, .feature-item {
    gap: 10px;
  }
  .country-grid, .story-blurbs {
    flex-direction: column;
    gap: 17px;
  }
  .country-grid > div, .story-blurbs > div {
    min-width: 98px;
    width: 100%;
    margin-bottom: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.12rem; }
  .section, .hero, .about-hero, .recipes-hero, .laenderkuechen-hero, .kochkurse-hero, .food-styling-hero, .kontakt-hero, .thank-you {
    padding: 14px 4px;
    border-radius: 0 0 15px 15px;
  }
  .cta, button, input[type=submit] {
    font-size: 0.99rem;
    padding: 9px 12px;
  }
  .country-grid > div, .story-blurbs > div {
    min-width: 0;
    padding: 8px 4px;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff9e1;
  color: #285739;
  box-shadow: 0 -3px 15px 0 rgba(217,164,65,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 7777;
  padding: 22px 12px;
  gap: 18px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: transform 0.25s, opacity 0.25s;
}
.cookie-banner.hide {
  transform: translateY(200%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-btn {
  padding: 8px 26px;
  border-radius: 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  margin-left: 12px;
  background: #D9A441;
  color: #285739;
  font-weight: 700;
  transition: background 0.15s, color 0.15s, transform 0.11s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #285739;
  color: #fff;
  transform: scale(1.04);
}
.cookie-banner .cookie-settings-btn {
  background: #FAF7F0;
  border: 1.5px solid #285739;
  color: #285739;
  margin-left: 8px;
  font-weight: 600;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #D9A441;
  color: #fff;
}

/* Cookie Consent Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 8888;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(40,87,57,0.18);
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: fadeInCookieModal 0.22s;
}
@keyframes fadeInCookieModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px 24px 32px;
  box-shadow: 0 7px 40px 0 rgba(217,164,65,0.19);
  min-width: 300px;
  max-width: 94vw;
  color: #285739;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal h3 {
  font-size: 1.3rem;
  color: #285739;
  margin-bottom: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-categories {
  display: flex; flex-direction: column; gap: 23px;
}
.cookie-setting-row {
  display: flex; align-items: center; justify-content: space-between; gap: 15px;
  margin-bottom: 7px;
}
.cookie-setting-row label {
  font-size: 1.02rem;
}
.cookie-toggle {
  width: 36px; height: 20px;
  background: #FAF7F0;
  border-radius: 12px;
  border: 1.5px solid #285739;
  position: relative;
  transition: background 0.18s;
}
.cookie-toggle input[type=checkbox] { display: none; }
.cookie-toggle-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: #D9A441;
  border-radius: 50%;
  transition: left 0.2s, background 0.2s;
}
.cookie-toggle input[type=checkbox]:checked + .cookie-toggle-slider {
  left: 18px;
  background: #285739;
}
.cookie-modal-actions {
  margin-top: 32px;
  display: flex; flex-direction: row;
  gap: 16px;
}
.cookie-modal .cookie-btn {
  padding: 8px 24px;
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 18px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #285739;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #D9A441;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 20px 8px 10px 8px;
    min-width: 92vw;
  }
  .cookie-modal-actions {
    flex-direction: column; gap: 10px;
  }
}

/* List and content helpers */
ol, ul {
  margin-left: 0;
}
.content-wrapper ul, .content-wrapper ol {
  margin-left: 0;
  list-style: none;
}
.content-wrapper ol li {
  position: relative;
  counter-increment: listitem;
  padding-left: 36px;
}
.content-wrapper ol li:before {
  content: counter(listitem) ".";
  position: absolute;
  left: 5px;
  top: 0;
  color: #D9A441;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

/* Other utilities */
.hide { display: none !important; }
.text-center { text-align: center; }

/* Accessibility focus outline */
:focus-visible {
  outline: 2px dashed #D9A441;
  outline-offset: 2px;
}

/* Animations */
.cta, button, input[type=submit], .card, .testimonial-card, .cookie-btn {
  transition: box-shadow 0.18s, background 0.18s, color 0.13s, transform 0.18s;
}

/* Miscellaneous Section-specific layout helpers */
.recipes-hero input[type=search] {
  margin-bottom: 10px;
  width: 100%;
  max-width: 430px;
  box-sizing: border-box;
  border-radius: 15px;
  border: 1.5px solid #D9A441;
  background: #fff;
  margin-top: 6px;
}

/**********
 * END OF FILE
 **********/
