/* ===============================
   GENUSSTURM | STYLE.CSS
   Sophisticated Monochrome Theme – Flexbox Only
   =============================== */

/******************************
 1. CSS RESET & NORMALIZATION
*******************************/
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #fff;
  color: #181818;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #181818;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #384B2D;
  outline: none;
}
ul, ol {
  list-style-position: inside;
}
button, input, select {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  color: inherit;
}
button:focus, input:focus, select:focus {
  outline: 2px solid #181818;
  outline-offset: 2px;
}

/******************************
 2. TYPOGRAPHY
*******************************/
h1, .h1 {
  font-family: 'Nunito', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: #111;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2, .h2 {
  font-family: 'Nunito', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #222;
  line-height: 1.15;
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: 'Nunito', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #252525;
  margin-bottom: 14px;
}
h4, .h4 {
  font-family: 'Nunito', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}
p, li {
  font-size: 1rem;
  color: #272727;
  margin-bottom: 12px;
}
strong {
  font-weight: bold;
}
.subheadline {
  font-family: 'Nunito', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  color: #636363;
  margin-bottom: 20px;
  letter-spacing: .5px;
}

/******************************
 3. CONTAINER & LAYOUT
*******************************/
.container {
  width: 100%;
  max-width: 1150px;
  padding: 0 24px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/******************************
 4. HEADER & NAVIGATION
*******************************/
header {
  background: #fff;
  border-bottom: 1px solid #d7d7d7;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: box-shadow 0.2s;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
}
header nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
header nav a {
  font-family: 'Nunito', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #181818;
  letter-spacing: .5px;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}
header nav a:hover,
header nav a:focus {
  color: #384B2D;
}
header img {
  height: 42px;
  width: auto;
  margin-right: 12px;
}

/* Hide mobile nav on desktop */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.16;
  color: #fff;
  background: #181818;
  border-radius: 28px;
  padding: 12px 32px;
  box-shadow: 0 2px 8px 0 rgba(24,24,24,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.15s;
  border: none;
  cursor: pointer;
  text-align: center;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #384B2D;
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(56,75,45,0.12);
}

/*******************************
 5. HERO SECTIONS
*******************************/
.hero {
  background: #fff;
  padding: 52px 0 40px 0;
  margin-bottom: 44px;
  box-shadow: none;
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
.hero h1 {
  margin-bottom: 12px;
}

/*********************************
 6. FLEX PATTERN: FEATURE GRID
**********************************/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 22px 0;
}
.feature {
  background: #fafafa;
  border: 1px solid #ededed;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(40,40,40,0.07);
  padding: 32px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 230px;
  max-width: 350px;
  flex: 1 1 250px;
  transition: box-shadow 0.2s, border 0.2s;
}
.feature:hover,
.feature:focus-within {
  border: 1px solid #384B2D;
  box-shadow: 0 6px 24px rgba(56,75,45,0.11);
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}
.feature h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 4px;
}

/************************************
 7. FLEX PATTERN: CARDS & TEASER LISTS
*************************************/
.recipe-teaser-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 10px 0;
}
.recipe-teaser {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 15px;
  box-shadow: 0 3px 16px 0 rgba(20,20,20,0.06);
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 340px;
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, border 0.18s;
}
.recipe-teaser:hover,
.recipe-teaser:focus-within {
  border: 1px solid #384B2D;
  box-shadow: 0 8px 32px 0 rgba(56,75,45,0.10);
  z-index: 2;
}
.recipe-teaser h3 {
  font-size: 1.15rem;
  font-family: 'Nunito', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #252525;
  margin-bottom: 6px;
}
.recipe-teaser p {
  color: #424242;
}
.recipe-teaser .tag {
  display: inline-block;
  background: #ececec;
  color: #181818;
  font-size: .95rem;
  border-radius: 6px;
  padding: 3px 10px;
  margin-right: 5px;
  margin-bottom: 6px;
}
.recipe-teaser a {
  color: #384B2D;
  font-weight: 700;
  margin-top: 4px;
  text-decoration: underline;
  transition: color 0.2s;
}
.recipe-teaser a:hover { color: #F0C808; }

/*************************************
 8. CARD & FLEX CONTAINER STYLES (REQ.)
**************************************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(15,15,15,0.07);
  padding: 28px;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  transition: box-shadow 0.15s, border 0.15s;
}
.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;
}

/**************************************
 9. CTA SECTION
***************************************/
.cta {
  background: #181818;
  color: #fff;
  border-radius: 26px;
  margin: 36px 0 0 0;
  padding: 56px 20px;
  box-shadow: 0 10px 36px 0 rgba(24,24,24,0.08);
}
.cta .container {
  align-items: center;
}
.cta .cta-primary {
  margin-top: 18px;
  background: #F0C808;
  color: #181818;
  font-weight: 800;
  box-shadow: 0 2px 16px 0 rgba(240,200,8,0.14);
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
}
.cta .cta-primary:hover,
.cta .cta-primary:focus {
  background: #384B2D;
  color: #fff;
}

/***************************************
 10. FORMS, FILTER & SEARCH
***************************************/
.search-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #ededed;
  border-radius: 22px;
  gap: 0;
  padding: 5px 6px 5px 16px;
  margin: 18px 0 0 0;
  width: 100%;
  max-width: 410px;
  box-shadow: 0 1px 5px rgba(180,180,180,0.06);
}
.search-bar input[type="text"] {
  flex: 1;
  background: transparent;
  border: none;
  font-size: 1rem;
  padding: 7px 10px;
  color: #181818;
  font-family: 'Roboto', sans-serif;
}
.search-bar input[type="text"]:focus {
  outline: none;
}
.search-bar button {
  font-family: 'Nunito', 'Roboto', Arial, sans-serif;
  background: #181818;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 6px 17px;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.18s;
}
.search-bar button:hover,
.search-bar button:focus {
  background: #384B2D;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 10px 0 3px 0;
}
.filter-list li {
  display: inline-flex;
  align-items: center;
  background: #ededed;
  border-radius: 8px;
  color: #222;
  font-weight: 500;
  font-size: 0.98rem;
  padding: 7px 19px;
  margin-bottom: 3px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.filter-list li:hover,
.filter-list li:focus {
  background: #384B2D;
  color: #fff;
}

.region-filter {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-bottom: 15px;
}
.region-filter label {
  font-weight: 700;
  color: #252525;
}
.region-filter select {
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid #ededed;
  background: #fafafa;
  font-size: 1rem;
  color: #212121;
  font-family: 'Nunito', Arial, sans-serif;
  transition: border 0.19s;
}
.region-filter select:focus {
  border: 1px solid #384B2D;
}

/***************************************
 11. TEXT SECTIONS & BLOCKS
***************************************/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 18px;
}
.text-section p,
.text-section ul,
.text-section h2,
.text-section h3 {
  margin-bottom: 9px;
}
.text-section strong {
  color: #384B2D;
}
.text-section ul {
  margin-left: 12px;
  margin-top: 0;
  margin-bottom: 12px;
  padding-left: 0;
}
.text-section li {
  margin-bottom: 7px;
}

/***************************************
 12. TESTIMONIALS & REVIEW CARDS
***************************************/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 32px 20px 24px;
  background: #fafafa;
  box-shadow: 0 2px 14px 0 rgba(24,24,24,0.06);
  border: 1px solid #e9e9e9;
  border-radius: 14px;
  margin-bottom: 24px;
  max-width: 520px;
}
.testimonial-card blockquote {
  font-size: 1.15rem;
  font-family: 'Nunito', Arial, sans-serif;
  font-style: italic;
  color: #292929;
  margin-bottom: 2px;
}
.testimonial-meta {
  font-size: 1rem;
  color: #6d6d6d;
}

/**************************************
 13. FOOTER STYLES
**************************************/
footer {
  background: #181818;
  color: #fff;
  padding: 48px 0 0 0;
}
footer .container {
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  flex-direction: column;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
footer nav a {
  color: #e5e5e5;
  font-size: .98rem;
  font-weight: 700;
  font-family: 'Nunito', Arial, sans-serif;
  margin-bottom: 6px;
  transition: color 0.18s;
}
footer nav a:hover,
footer nav a:focus {
  color: #F0C808;
}
.footer-info {
  color: #d1d1d1;
  font-size: 0.98rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-info img {
  height: 18px;
  width: 18px;
  margin-right: 5px;
  vertical-align: middle;
}

/***************************************
 14. MOBILE NAVIGATION & DRAWER
***************************************/
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 120;
  font-size: 2rem;
  background: #fff;
  color: #181818;
  border-radius: 7px;
  padding: 7px 15px;
  box-shadow: 0 2px 12px rgba(24,24,24,0.10);
  border: 1px solid #ebebeb;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #384B2D;
}

.mobile-menu {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 130;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(.45,.04,.36,1.01), opacity 0.18s;
  box-shadow: 0 4px 32px 0 rgba(25,25,25,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #181818;
  background: none;
  border: none;
  margin: 20px 0 26px 25px;
  cursor: pointer;
  z-index: 140;
  align-self: flex-start;
  transition: color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #384B2D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #181818;
  padding: 13px 0;
  margin-bottom: 2px;
  border-bottom: 1px solid #f3f3f3;
  width: 100%;
  display: block;
  transition: color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #384B2D;
}

/***************************************
 15. COOKIE CONSENT BANNER & PREFERENCES
***************************************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #222;
  color: #fff;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 -2px 20px rgba(24,24,24,.18);
  z-index: 1001;
  align-items: flex-start;
  width: 100vw;
  transition: transform 0.28s, opacity 0.19s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-btn-group {
  display: flex;
  gap: 14px;
  margin-top: 3px;
}
.cookie-btn {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 18px;
  border: none;
  padding: 8px 22px;
  font-weight: 700;
  cursor: pointer;
  background: #384B2D;
  color: #fff;
  box-shadow: 0 1px 4px 0 rgba(56,75,45,0.08);
  transition: background 0.14s, color 0.14s;
}
.cookie-btn.accept {
  background: #F0C808;
  color: #1a1a1a;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #384B2D;
  color: #fff;
}
.cookie-btn.reject {
  background: #d7d7d7;
  color: #181818;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #384B2D; color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #181818;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #e6e6e6;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0;left: 0;right: 0;bottom: 0;
  background: rgba(24,24,24,.55);
  z-index: 2001;
  display: none;
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #1a1a1a;
  border-radius: 21px;
  box-shadow: 0 10px 48px 0 rgba(0,0,0,0.17);
  padding: 35px 38px;
  min-width: 320px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: modal-in .3s cubic-bezier(.75,-0.1,.37,1.3);
}
@keyframes modal-in {
  from { opacity:0; transform:scale(.9); }
  to { opacity:1; transform:scale(1); }
}
.cookie-modal-title {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1.38rem;
  font-weight: 800;
}
.cookie-category {
  margin-bottom: 14px;
  display: flex; flex-direction: row; align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-weight: 600;
  color: #252525;
  margin-right: 18px;
}
.cookie-toggle {
  width: 40px;height:23px;
  border-radius:16px; background:#ececec;
  position: relative; cursor:pointer;
  display: inline-block;
  vertical-align: middle;
  transition: background 0.13s;
}
.cookie-toggle input {
  display:none;
}
.cookie-toggle .slider {
  position: absolute; inset:0;
  background: #ececec;
  border-radius:16px;
  transition: background 0.13s;
}
.cookie-toggle input:checked+.slider {
  background:#384B2D;
}
.cookie-toggle .slider::before {
  content: "";
  position: absolute;
  left:3px;top:3px;bottom:3px;
  width:17px;
  background: #fff;
  border-radius:50%;
  transition: transform 0.15s;
}
.cookie-toggle input:checked+.slider::before {
  transform: translateX(16px);
  background: #F0C808;
}
.cookie-modal-close {
  position: absolute; top: 19px; right: 21px;
  font-size: 1.5rem;
  background: none; border: none;
  color: #181818;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #384B2D;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}

/***************************************
 16. MISCELLANEOUS & UTILITY
***************************************/
.tag {
  background: #181818;
  color: #fff !important;
  border-radius: 5px;
  font-size: 0.93rem;
  padding: 2px 9px;
  display: inline-block;
  margin-right:5px;
}
[aria-label] {
  cursor: pointer;
}

/***************************************
 17. SPACING & FLEX GAPS (MANDATORY)
***************************************/
.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; }

/***************************************
18. RESPONSIVE – MOBILE FIRST
***************************************/
@media (max-width: 1090px) {
  header .container, .footer .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .container { padding-left: 12px; padding-right: 12px; }
}
@media (max-width: 950px) {
  .feature-grid, .recipe-teaser-list, .card-container, .content-grid {
    gap: 16px;
  }
  .feature, .recipe-teaser, .card {
    min-width: 180px;
    max-width: 100%;
    flex-basis: 200px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 15px 10px;
  }
  header nav {
    display: none !important;
  }
  .cta-primary {
    padding: 10px 20px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
  .feature-grid, .recipe-teaser-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature,
  .recipe-teaser,
  .card {
    min-width: 0;
    max-width: 100%;
    flex-basis: auto;
  }
  .region-filter {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .cookie-modal {
    padding: 30px 12px;
    min-width: 0;
    max-width: 95vw;
  }
}
@media (max-width: 520px) {
  h1, .h1 { font-size: 1.46rem; }
  h2, .h2 { font-size: 1.12rem; }
  .cta { padding: 28px 7px; border-radius: 14px; }
  .footer-info { font-size: 0.88rem; }
  .testimonial-card { padding: 10px; }
  .region-filter label { font-size: .95rem; }
  .cookie-banner { padding: 16px 6px; }
}

/*******************************
 BRAND FONTS
*******************************/
@import url('https://fonts.googleapis.com/css?family=Nunito:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

/* End of GenussTurm Monochrome Sophisticated Flexbox-Only CSS */
