/* === CSS 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,
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; height: auto; display: block; }

/* === Font Face Imports === */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900&display=swap');

/* === Root Custom Properties & Brand Colors === */
:root {
  --color-primary: #37523C;
  --color-primary-dark: #2C3F30;
  --color-secondary: #ECECEC;
  --color-bg: #FFFFFF;
  --color-accent: #FFA300;
  --color-green-light: #C5D2C2;
  --color-earth: #BBA078;
  --color-brown: #7C6540;
  --color-error: #be3d26;
  --font-display: 'Merriweather', serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-secondary);
  color: var(--color-primary-dark);
  font-size: 16px;
  min-height: 100vh;
}

main {
  min-height: 60vh;
}

/* === Layout Containers === */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* === Responsive Spacing Patterns === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg);
  border-radius: 32px;
  box-shadow: 0 3px 15px rgba(55, 82, 60, 0.07);
}
.card-container,
.post-grid,
.category-grid,
.recipe-teasers,
.service-list,
.author-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .service-list > div,
.recipe-teasers > div,
.post-grid > div,
.author-bios > div {
  background: var(--color-secondary);
  margin-bottom: 20px;
  position: relative;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 3px 16px rgba(55, 82, 60, 0.06);
  flex: 1 1 220px;
  min-width: 220px;
  transition: box-shadow 0.2s;
}
.card:hover, .service-list > div:hover,
.recipe-teasers > div:hover,
.post-grid > div:hover,
.author-bios > div:hover {
  box-shadow: 0 6px 24px rgba(55,82,60,0.16);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: var(--color-green-light);
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(55,82,60,0.08);
  min-width: 220px;
  max-width: 350px;
  flex: 1 1 220px;
  color: var(--color-primary);
}
.testimonial-card blockquote {
  font-weight: 600;
  font-size: 16px;
  font-style: italic;
}
.testimonial-card cite {
  font-size: 14px;
  color: var(--color-primary-dark);
  letter-spacing: 0.01em;
  margin-top: 8px;
  font-style: normal;
}
.rating-summary {
  margin-top: 12px;
  font-weight: bold;
  color: var(--color-brown);
}

/* === Typography === */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: 16px;
  font-weight: 900;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--color-primary);
  font-weight: 700;
}
h3, .h3 {
  font-size: 1.35rem;
  color: var(--color-brown);
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 700;
}
h4, .h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}
p, ul, ol, li {
  font-size: 1rem;
  color: var(--color-primary-dark);
}
strong {
  color: var(--color-primary);
  font-weight: 700;
}
.text-section, .editorial-mission {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section ul {
  margin-left: 20px;
  list-style: disc inside none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.text-section li {
  margin-bottom: 6px;
}

/* Links */
a {
  color: var(--color-accent);
  text-decoration: underline;
}
a:hover, a:focus {
  color: var(--color-primary);
  text-decoration: underline wavy var(--color-accent);
  outline: none;
}

/* === Button Styles === */
.cta-btn, .recipe-search-bar button, .text-section button, .service-list > div > a, .featured-post a {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 13px 32px;
  border-radius: 28px;
  border: none;
  margin-top: 12px;
  margin-bottom: 8px;
  transition: background 0.19s, color 0.19s, box-shadow 0.18s, transform 0.18s;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(255,163,0,0.14);
}
.cta-btn:hover, .recipe-search-bar button:hover, .text-section button:hover, .service-list > div > a:hover, .featured-post a:hover {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 5px 18px rgba(44,63,48,0.18);
  transform: translateY(-2px) scale(1.04);
}
.cta-btn.secondary {
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-accent);
}
.cta-btn.secondary:hover {
  background: var(--color-bg);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

/* === Header & Navigation === */
header {
  width: 100%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(55,82,60,0.07);
  padding: 0 0 0 0;
  position: relative;
  min-height: 74px;
  z-index: 20;
}
.logo {
  padding: 16px 24px 16px 0;
  display: flex;
  align-items: center;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-primary-dark);
  font-size: 1rem;
  position: relative;
  padding: 8px 0px;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-accent);
  background: var(--color-green-light);
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary-dark);
  color: #fff;
  outline: 2px solid var(--color-green-light);
}

/* === Mobile Menu === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,63,48,0.98);
  z-index: 1105;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.47,1.64,.41,.8);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-accent);
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  align-self: flex-end;
  margin: 32px 32px 0 0;
  cursor: pointer;
  transition: background 0.13s;
  z-index: 1111;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-primary-dark);
  outline: 2px solid var(--color-green-light);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 0 0 0;
  width: 100vw;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: var(--font-body);
  font-weight: 600;
  background: none;
  padding: 16px 0;
  border-radius: 0;
  transition: color 0.12s, background 0.14s;
  width: 100%;
  text-align: center;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--color-accent);
  background: rgba(255,163,0,0.14);
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* === Responsive Columns & Flex Directions === */
@media (max-width: 1023px) {
  .card-container, .post-grid, .author-bios, .service-list, .category-grid, .recipe-teasers {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .section {
    padding: 28px 8px;
    border-radius: 18px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-list {
    gap: 18px;
  }
  .testimonial-card {
    min-width: unset;
    max-width: 100%;
  }
  .card, .service-list > div, .recipe-teasers > div, .post-grid > div, .author-bios > div {
    padding: 18px;
    min-width: unset;
    max-width: 100%;
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  h1, .h1 { font-size: 1.65rem; }
  h2, .h2 { font-size: 1.2rem; }
  .section { margin-bottom: 32px; }
}

/* === Form, Inputs, Recipe Search === */
.recipe-search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 10px 0;
  align-items: center;
}
.recipe-search-bar input[type="text"] {
  flex: 1 1 180px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid var(--color-primary);
  border-radius: 28px;
  padding: 13px 20px;
  outline: none;
  transition: border 0.13s, box-shadow 0.13s;
}
.recipe-search-bar input[type="text"]:focus {
  border: 2.2px solid var(--color-accent);
  box-shadow: 0 2px 7px rgba(255, 163, 0, 0.16);
}
.recipe-search-bar button {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 28px;
  border: none;
}

/* === Table Styles (Dienstleistungen) === */
table {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--color-bg);
  box-shadow: 0 2px 8px rgba(55,82,60,0.06);
}
thead tr {
  background: var(--color-green-light);
}
th, td {
  padding: 14px 16px;
  text-align: left;
  font-size: 1rem;
  vertical-align: top;
}
th {
  color: var(--color-primary);
  font-weight: 700;
  font-family: var(--font-display);
}
tbody tr {
  border-bottom: 1px solid #dedede;
}
tbody tr:last-child {
  border-bottom: none;
}

/* === Cards, Category & Feature Styles === */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-bottom: 12px;
  justify-content: flex-start;
  align-items: flex-start;
}
.category-grid li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-green-light);
  border-radius: 18px;
  padding: 12px 21px;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1rem;
  box-shadow: 0 1px 4px rgba(55,82,60,0.10);
  min-width: 120px;
  transition: background 0.15s;
}
.category-grid li:hover {
  background: var(--color-accent);
  color: #fff;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-secondary);
  border-radius: 19px;
  padding: 19px 20px;
  box-shadow: 0 2px 7px rgba(55,82,60,0.05);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.service-list > div {
  min-width: 220px;
  flex: 1 1 220px;
  background: var(--color-green-light);
  border-radius: 20px;
  box-shadow: 0 1px 7px rgba(44,63,48,0.04);
  color: var(--color-primary-dark);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-list > div h3 {
  margin-top: 4px;
}

/* === Blog, Author, Featured post etc. === */
.featured-post {
  background: var(--color-accent);
  color: #fff;
  border-radius: 26px;
  padding: 27px 30px;
  box-shadow: 0 4px 20px rgba(255,163,0,0.06);
  margin-top: 14px;
}
.featured-post h2 {
  color: #fff;
}

.post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.post-grid > div {
  min-width: 220px;
  flex: 1 1 240px;
  background: var(--color-green-light);
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(44,63,48,0.06);
  color: var(--color-primary-dark);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.category-tags {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 22px 0 16px 0;
}
.category-tags a {
  background: var(--color-primary);
  color: #fff;
  border-radius: 99px;
  padding: 6px 19px;
  font-size: 0.93rem;
  font-weight: 600;
  transition: background 0.12s;
}
.category-tags a:hover {
  background: var(--color-accent);
}
.popular-posts ul {
  margin-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* === Footer === */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 44px 0 16px 0;
  width: 100%;
  margin-top: 80px;
  z-index: 10;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.87;
  letter-spacing: 0.01em;
  transition: color 0.12s, opacity 0.14s;
  padding: 6px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
  opacity: 1;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding-top: 10px;
  font-size: 0.97rem;
  opacity: 0.93;
}
.footer-brand img {
  width: 48px;
  margin-bottom: 5px;
}

/* === Cookie Consent Banner & Modal === */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--color-earth);
  color: var(--color-primary-dark);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 26px 34px;
  gap: 20px;
  box-shadow: 0 -3px 18px rgba(55,82,60,0.09);
  z-index: 1600;
  font-size: 1rem;
  animation: cookieAppear 0.7s cubic-bezier(.47,1.64,.41,.8);
}
@keyframes cookieAppear {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-message {
  flex: 1 1 0%;
  font-size: 1rem;
  margin-right: 20px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.cookie-btn {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 18px;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.16s;
  margin-left: 0;
}
.cookie-btn.secondary {
  background: var(--color-accent);
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--color-primary-dark);
  border: 1.5px solid var(--color-primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-accent);
  color: #fff;
  outline: none;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--color-earth);
  border-color: var(--color-accent);
}
/* Banner mobile styles */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px;
    gap: 14px;
    font-size: 0.98rem;
  }
  .cookie-banner-message {
    margin-right: 0;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(44,63,48,0.78);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.55s cubic-bezier(.47,1.64,.41,.8);
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--color-bg);
  border-radius: 24px;
  box-shadow: 0 7px 44px rgba(44,63,48,0.20);
  max-width: 400px;
  width: 92vw;
  padding: 32px 24px 25px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 13px;
  font-size: 1rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  width: 19px;
  height: 19px;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--color-primary-dark);
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
.cookie-modal-close {
  position: absolute;
  right: 16px; top: 13px;
  background: var(--color-earth);
  color: var(--color-primary);
  font-size: 1.2rem;
  border: none;
  border-radius: 8px;
  width: 32px; height: 32px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.cookie-modal-close:hover {
  background: var(--color-accent);
  color: #fff;
}

/* === Other: Location Map, Scrollbar, FAQ, Misc === */
.location-map {
  margin: 18px 0;
  padding: 14px 13px;
  background: var(--color-green-light);
  border-radius: 16px;
  color: var(--color-primary);
}
.faq ul {
  margin-left: 20px;
  list-style: disc inside none;
}
::-webkit-scrollbar {
  width: 10px; background: var(--color-green-light);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary); border-radius: 10px;
}
/* Organic SVG/Blob Decor (example decorations; not for content) */
.organic-blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
  filter: blur(2px);
}
/* Micro-interactions: Subtle transitions */
.card, .service-list > div, .category-grid li,
.post-grid > div, .author-bios > div, .testimonial-card, .feature-item {
  transition: box-shadow 0.18s, background 0.17s, transform 0.18s;
}
.card:hover, .service-list > div:hover, .category-grid li:hover,
.post-grid > div:hover, .author-bios > div:hover, .testimonial-card:hover, .feature-item:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 6px 22px rgba(55,82,60,0.15);
  z-index: 5;
}

/* === Utility Classes === */
.text-center { text-align: center; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.pt-16 { padding-top: 16px; }

/* === Accessibility: Focus Outlines === */
:focus-visible {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 3px;
}

/* === Selection Colors === */
::selection { background: var(--color-accent); color: #fff; }

/*
  === END STYLE.CSS ===
  - No CSS Grid or columns used anywhere (only flexbox)
  - All required spacing and layout patterns implemented
  - Accessible color contrast in testimonials/reviews
  - Mobile nav & cookie banner styles included
  - Consistent with 'nature_organic' brand style
*/
