/* RESET & 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #FAF8F5;
  color: #222;
  font-family: 'Libre Baskerville', Times New Roman, Times, serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #356859;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1e3d36;
}

/* FONT IMPORTS (serif + sans fallback for elegance & clarity) */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Montserrat:wght@700&family=Open+Sans:wght@400;600&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Libre Baskerville', Times New Roman, Times, serif;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.18;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
p, li, address {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #1f2320;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}


/* LAYOUT CONTAINERS */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(53,104,89,0.07);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #eae4dc;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 18px 20px;
}
header img {
  height: 48px;
  width: auto;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #356859;
  padding: 4px 0;
  position: relative;
}
nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #F8C630;
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -2px;
}
nav a:hover:after, nav a:focus:after {
  width: 100%;
}
header .btn.primary {
  margin-left: 32px;
}

/* HERO SECTION */
.hero {
  background: #F7F6F3;
  padding: 60px 0 60px 0;
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
.hero h1 {
  font-size: 2.5rem;
  color: #356859;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: #444;
}

/* FEATURES / GRID ITEMS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(53,104,89,0.06);
  padding: 32px 24px;
  flex: 1 1 290px;
  min-width: 250px;
  max-width: 350px;
  transition: box-shadow 0.16s;
}
.feature-item img {
  height: 40px;
  margin-bottom: 8px;
}
.feature-item:hover {
  box-shadow: 0 4px 22px rgba(53,104,89,0.13);
}

/* BLOG & ARTICLE STYLES */
.blog-list, .recipe-list, .team-list, .principle-list, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.article-card, .recipe-card, .team-list > div, .principle-list > div, .faq-list > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(53,104,89,0.06);
  padding: 28px 22px;
  flex: 1 1 280px;
  min-width: 220px;
  max-width: 330px;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.16s;
}
.article-card:hover, .recipe-card:hover {
  box-shadow: 0 4px 22px rgba(53,104,89,0.12);
}
.article-card a.cta-link, .recipe-card a {
  font-family: 'Montserrat', 'Libre Baskerville', serif;
  color: #356859;
  font-weight: 700;
  display: inline-block;
  margin-top: 16px;
  transition: color 0.2s;
}
.article-card a.cta-link:hover, .recipe-card a:hover {
  color: #F8C630;
}

/* TAGS & FILTERS */
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.category-tags span {
  background: #ede9e1;
  color: #356859;
  border-radius: 18px;
  padding: 4px 16px;
  font-size: 0.95rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: background 0.18s;
  cursor: pointer;
}
.category-tags span:hover, .category-tags span.active {
  background: #F8C630;
  color: #222;
}
.recipe-filters {
  margin-top: 18px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.recipe-filters label {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #444;
  margin-right: 5px;
  font-size: 0.97rem;
}
.recipe-filters select {
  padding: 6px 14px;
  border-radius: 14px;
  border: 1px solid #cbc7ba;
  background: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border 0.15s;
}
.recipe-filters select:focus {
  border: 1.5px solid #356859;
}

/* CTA BANNER */
.cta-banner {
  background: #356859;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(53,104,89,0.12);
  margin: 60px 0;
  padding: 40px 0;
}
.cta-banner .content-wrapper {
  align-items: center;
  gap: 22px;
}
.cta-banner p {
  color: #fff;
  font-size: 1.2rem;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 29px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 18px rgba(53,104,89,0.12);
  margin-bottom: 24px;
  flex: 1 1 400px;
  transition: box-shadow 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(53,104,89,0.18);
}
.testimonial-card p {
  color: #222;
  font-size: 1.13rem;
  margin-right: 10px;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #356859;
  font-style: italic;
  font-size: 0.98rem;
  min-width: 120px;
}

/* BUTTONS */
.btn, .cta-link {
  font-family: 'Montserrat', 'Libre Baskerville', serif;
  background: #356859;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 26px;
  font-size: 1.06rem;
  padding: 12px 32px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(53,104,89,0.07);
  transition: background 0.15s, box-shadow 0.22s, color 0.17s;
  text-align: center;
  outline: none;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.btn.primary:hover, .btn.primary:focus, .cta-link:hover {
  background: #284b42;
  color: #fff2c7;
  box-shadow: 0 4px 18px rgba(53,104,89,0.17);
}
.btn.secondary {
  background: #F8C630;
  color: #222;
}
.btn.secondary:hover {
  background: #eab400;
  color: #fff;
}
.btn:active {
  transform: translateY(2px);
}

.cta-link {
  background: transparent;
  color: #356859;
  font-size: 1.09rem;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-decoration: underline;
  margin-left: 0;
}
.cta-link:hover {
  color: #F8C630;
}

/* MODAL BUTTONS (Cookie Consent) */
.cookie-banner .btn, .cookie-modal .btn {
  min-width: 130px;
  margin-right: 10px;
  margin-top: 0;
  margin-bottom: 0;
}

.btn.settings {
  background: #fff;
  color: #356859;
  border: 1.5px solid #356859;
}
.btn.settings:hover {
  background: #F8C630;
  color: #222;
  border-color: #F8C630;
}

/* ADDRESS & FOOTER */
footer {
  background: #F7F6F3;
  padding: 36px 0 14px 0;
  border-top: 1px solid #eae4dc;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
  align-items: flex-start;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
footer nav a {
  color: #356859;
  font-size: 0.98rem;
}
footer address {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.98rem;
  color: #525252;
  line-height: 1.62;
}
.footer-claim {
  margin-top: 14px;
  font-size: 0.97rem;
  color: #a0a0a0;
}
footer img {
  vertical-align: middle;
  height: 19px;
  width: 19px;
  margin-right: 4px;
}

/* FORMS (Kontaktformular dummy styling) */
.text-section ul {
  list-style: disc;
}
.text-section li {
  margin-bottom: 8px;
  color: #234139;
  font-size: 1rem;
}

/* FAQ COLLAPSIBLES (not interactive since no JS presented, but styled as cards) */
.faq-list > div {
  cursor: pointer;
  transition: box-shadow 0.15s;
}
.faq-list > div:hover {
  box-shadow: 0 5px 19px rgba(53,104,89,0.13);
}

/* UTILITIES */
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.text-center { text-align: center; }

/* RESPONSIVENESS */
@media (max-width: 992px) {
  .container {
    max-width: 98%;
    padding: 0 10px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .feature-grid, .blog-list, .recipe-list, .team-list, .principle-list, .faq-list {
    gap: 16px;
  }
  .article-card, .recipe-card {
    padding: 20px 14px;
  }
}
@media (max-width: 768px) {
  .section, .hero {
    padding: 26px 4vw;
  }
  header .container {
    flex-direction: row;
    align-items: center;
  }
  nav {
    display: none;
  }
  .btn.primary {
    margin-left: 0;
  }
  .feature-grid, .blog-list, .recipe-list, .team-list, .principle-list, .faq-list, .card-container {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
  }
  .content-wrapper {
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cta-banner {
    padding: 22px 0;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  .testimonial-card,
  .article-card, .recipe-card, .feature-item {
    padding: 15px 8px;
  }
  .btn, .btn.primary, .btn.secondary {
    padding: 9px 16px;
    font-size: 0.97rem;
  }
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  background: #356859;
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(53,104,89,0.13);
  transition: background 0.18s, box-shadow 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #234139;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 10001;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.85,-0.01,.18,1.02);
  box-shadow: 0 8px 38px rgba(0,0,0,0.11);
}
.mobile-menu.open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(0);
  animation: mobileMenuFadeIn 0.32s;
}
@keyframes mobileMenuFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #356859;
  align-self: flex-end;
  margin: 24px 22px 6px 0;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F8C630;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: flex-start;
  margin: 34px 0 0 32px;
}
.mobile-nav a {
  color: #234139;
  font-size: 1.3rem;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 6px 1px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  min-width: 200px;
  display: inline-block;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #F8C630;
  color: #222;
}

@media (max-width: 1020px) {
  .mobile-menu-toggle {
    display: flex;
  }
  nav {
    display: none !important;
  }
  /* Hide desktop nav and show mobile toggle */
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffdf5;
  color: #2f453e;
  border-top: 2px solid #356859;
  box-shadow: 0 -2px 20px rgba(53,104,89,0.09);
  z-index: 11000;
  min-height: 64px;
  padding: 18px 12px 18px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  transition: bottom 0.38s;
  animation: bannerSlideUp 0.36s;
}
@keyframes bannerSlideUp {
  0% { transform: translateY(120%); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner .btn {
  margin-left: 8px;
  padding: 7px 22px;
  font-size: 1rem;
  border-radius: 20px;
  min-width: 110px;
}
.cookie-banner .btn.settings {
  border: 1.2px solid #356859;
  background: #fff;
  color: #356859;
  font-weight: 700;
}
.cookie-banner .btn.settings:hover {
  background: #ddebe6;
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 12000;
  align-items: center;
  justify-content: center;
  background: rgba(34,41,36,0.40);
  transition: background 0.15s;
}
.cookie-modal.open {
  display: flex;
  animation: cookieModalIn 0.34s;
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  max-width: 340px;
  width: 95vw;
  padding: 36px 24px 24px 24px;
  box-shadow: 0 8px 44px rgba(53,104,89,0.15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: modalPopIn 0.42s cubic-bezier(.83,-0.13,.39,1.08);
}
@keyframes modalPopIn {
  0% {transform: scale(0.85);opacity:0;}
  98% {transform: scale(1.04);}
  100% {transform: scale(1);opacity:1;}
}
.cookie-modal-content h3 {
  font-family: 'Libre Baskerville', serif;
  color: #356859;
  font-size: 1.2rem;
}
.cookie-modal-content label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
  margin-left: 10px;
}
.cookie-modal-content .category-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-modal-content .category-switch input[type="checkbox"] {
  accent-color: #F8C630;
  width: 22px;
  height: 22px;
}
.cookie-modal-content .btn {
  margin-top: 4px;
}
.cookie-modal-content .btn:last-child {
  margin-right: 0;
}

@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.97rem;
  }
  .cookie-modal-content {
    padding: 24px 10px 14px 10px;
    font-size: 0.97rem;
  }
}

/* VISUAL ENHANCEMENTS: SPACING, SHADOWS*/
.card, .feature-item, .testimonial-card, .article-card, .recipe-card, .faq-list > div {
  box-shadow: 0 2px 14px rgba(53,104,89,0.05);
  border-radius: 15px;
  border: 1px solid #ede5da;
}

/* MICRO-INTERACTIONS & TRANSITIONS */
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.22s, transform 0.12s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover, .article-card:hover, .recipe-card:hover {
  box-shadow: 0 7px 30px rgba(53,104,89,0.13);
  transform: translateY(-2px);
}

/* OTHER UTILITY */
::-webkit-selection {
  background: #F8C630;
  color: #222;
}
::selection {
  background: #F8C630;
  color: #222;
}

/* Hide scroll on modal open on body */
body.modal-open {
  overflow: hidden;
}
