/* ==================================================
   Lumina Quark Smoothies – nature_organic CSS Styles
   ==================================================
   Mobile-first, Flexbox-only, modern, organic, earth tones
   Brand: Montserrat & Roboto fonts, Green accents
*/

/* CSS RESET & BASE STYLES */
html {
  box-sizing: border-box;
  font-size: 16px; /* base scale for rem/em */
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #FCFAF4;
  color: #24321b;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  letter-spacing: 0.02em;
}
img, svg {
  max-width: 100%;
  vertical-align: middle;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #30693E;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #194820;
  outline: none;
}
button {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
input, textarea {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 8px;
  padding: 12px 14px;
  border: 1.5px solid #C9C2AB;
  background: #FFFDF7;
  color: #20301F;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 16px;
  width: 100%;
  resize: vertical;
}
input:focus, textarea:focus {
  border-color: #8EDB8D;
  box-shadow: 0 0 0 2px #8EDB8D24;
  outline: none;
}

/* TYPOGRAPHY */
h1, .hero h1, .about-hero h1, .recipes-hero h1,
.tips-hero h1, .seasonal-hero h1, .thank-you-message h1,
.privacy-policy h1, .gdpr-policy h1, .terms-policy h1,
.cookie-policy h1, .contact-hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #30693E;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  color: #30693E;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.17rem;
  color: #4C5B2C;
  font-weight: 500;
  margin-bottom: 10px;
}
p, li, address, textarea, input {
  font-size: 1rem;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
  color: #30693E;
}

/* CONTAINER/WRAPPER */
.container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px 32px 24px 32px / 20px 36px 20px 36px;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 #2a412381;
  transition: background 0.24s, color 0.24s, transform 0.14s;
  min-width: 130px;
  min-height: 44px;
  margin-top: 14px;
}
.btn-primary {
  background: #30693E;
  color: #FFFDF7;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1e4125;
  color: #fff;
  transform: translateY(-2px) scale(1.06);
}
.btn-secondary {
  background: #8EDB8D;
  color: #30693E;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #30693E;
  color: #FFFDF7;
  transform: translateY(-2px) scale(1.06);
}

/* WEBSITE SECTIONS – SECTIONS, FLEX CONTAINERS */
.section,
.hero,
.features,
.about-intro,
.recipes-preview,
.tips-teaser,
.newsletter,
.about-hero,
.mission-values,
.team,
.brand-story,
.thank-you-message,
.recipe-filters,
.recipe-list,
.submit-recipe,
.tips-hero,
.tip-highlights,
.nutrition-facts,
.seasonal-hero,
.seasonal-suggestions,
.ingredient-calendar,
.blog-hero,
.featured-posts,
.blog-categories,
.contact-hero,
.contact-form-section,
.contact-details,
.privacy-policy,
.gdpr-policy,
.terms-policy,
.cookie-policy {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFDF7;
  border-radius: 36px 44px 32px 32px / 22px 38px 30px 44px;
  box-shadow: 0 2px 14px 0 #30693e0d;
}

/* FLEXBOX PATTERNS */
.card-container,
.team-bios,
.recipe-cards,
.tip-cards,
.facts-grid,
.calendar-grid,
.post-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.card,
.bio,
.recipe-card,
.tip-cards > div,
.facts-grid > div,
.calendar-grid > div,
.post-preview {
  margin-bottom: 20px;
  position: relative;
  background: #FCFAF4;
  border-radius: 20px 40px 24px 36px/24px 32px 38px 30px;
  box-shadow: 0 1px 8px 0 #00000008;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1.5px solid #E1E8DE;
  min-width: 240px;
  flex: 1 1 280px;
}

.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: #fff;
  border-radius: 26px 40px 32px 38px/22px 42px 28px 29px;
  box-shadow: 0 1px 12px 0 #30693e15;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SPACING - GENERAL */
.section > *,
.features > *,
.hero > *,
.about-hero > *,
.newsletter > *,
.mission-values > *,
.tips-hero > *,
.contact-hero > *,
.thank-you-message > * {
  margin-bottom: 16px;
}

ul.feature-grid > li,
ol.feature-grid > li {
  flex: 1 1 220px;
  background: #F2F5EF;
  border-radius: 20px 30px 32px 24px/22px 34px 28px 30px;
  border: 1.5px solid #DFEAD9;
  padding: 24px 22px 20px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  min-width: 200px;
  transition: box-shadow 0.18s, border-color 0.2s, transform 0.14s;
}
ul.feature-grid > li:hover {
  box-shadow: 0 4px 16px 0 #30693e16;
  border-color: #8EDB8D;
  transform: translateY(-2px) scale(1.025);
}
ul.feature-grid > li img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}

.quick-links {
  display: flex;
  gap: 22px;
  margin: 26px 0 12px 0;
  flex-wrap: wrap;
}
.quick-links a {
  font-size: 1rem;
  color: #4C5B2C;
  opacity: 0.85;
  font-weight: 500;
  transition: color 0.18s, opacity 0.2s;
}
.quick-links a:hover {
  color: #30693E;
  opacity: 1;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}
.newsletter-form input[type='email'] {
  width: 220px;
  min-width: 160px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-bottom: 18px;
}
.text-section {
  margin-top: 8px;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  margin-top: 0;
}
.category-tags span {
  background: #E5EFDD;
  color: #30693E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  border-radius: 18px 24px 16px 24px/18px 20px 18px 16px;
  padding: 7px 16px;
}

.search-field {
  display: flex;
  gap: 8px;
  width: 100%;
}
.search-field input[type='search'] {
  flex: 1 1 180px;
  min-width: 120px;
}
.search-field button {
  background: #30693E;
  color: #fff;
  border-radius: 20px;
  padding: 8px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  transition: background 0.2s;
}
.search-field button:hover {
  background: #1e4125;
}

/* FOOTER */
footer {
  background: #2a5334;
  color: #E9F5E6;
  margin-top: 60px;
  padding: 0;
  width: 100%;
  border-top-left-radius: 36px 18px;
  border-top-right-radius: 46px 24px;
}
footer .container {
  padding-top: 32px;
  padding-bottom: 22px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}
.footer-main-links {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
  margin-bottom: 14px;
}
.footer-main-links a {
  color: #C5EFD2;
  font-size: 1rem;
  transition: color 0.2s, opacity 0.2s;
  opacity: 0.94;
}
.footer-main-links a:hover {
  color: #8EDB8D;
  opacity: 1;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 7px;
}
.footer-brand img {
  width: 94px;
  margin-bottom: 6px;
}
.footer-brand span {
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #C5EFD2;
}
.footer-brand address {
  font-style: normal;
  font-size: 0.95rem;
  color: #b7dbb8;
}

/* =====================
   MOBILE NAVIGATION
   ===================== */
header {
  background: #fff;
  border-bottom-left-radius: 30px 14px;
  border-bottom-right-radius: 30px 14px;
  box-shadow: 0 3px 20px #30693e14;
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
header img {
  height: 48px;
}
.main-nav {
  display: none;
}
.mobile-menu-toggle {
  font-size: 2.1rem;
  color: #204519;
  background: none;
  border: none;
  padding: 8px;
  margin-left: 10px;
  border-radius: 12px;
  transition: background 0.2s;
  z-index: 101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #e3edd9;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #345339ee;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.63,0.06,0.32,1), opacity 0.16s;
  opacity: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 0 0 60px 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: #f0fff6;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 20px 28px 12px 0;
  z-index: 2002;
  border-radius: 14px;
  padding: 4px 9px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #3e7740cc;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  margin-top: 34px;
  width: 100%;
}
.mobile-nav a {
  color: #E9F5E6;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: none;
  padding: 16px 0 8px 0;
  border: none;
  text-align: center;
  border-radius: 16px;
  min-width: 220px;
  transition: background 0.18s, color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #8EDB8D;
  color: #30693E;
}

/* DESKTOP NAVIGATION */
@media (min-width: 900px) {
  .main-nav {
    display: flex !important;
    gap: 28px;
    align-items: center;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  }
  .main-nav a {
    color: #30693E;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 7px 14px;
    border-radius: 16px 20px 15px 19px/19px 14px 14px 18px;
    transition: background 0.18s, color 0.22s;
    background: none;
  }
  .main-nav a:hover, .main-nav a:focus {
    background: #e3edd9;
    color: #20301F;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO/BANNERS */
.hero {
  background: #e8f5e7 url('../assets/organic-bg.svg') top right no-repeat;
  background-size: 400px auto;
}
.hero h1, .about-hero h1, .recipes-hero h1, .tips-hero h1, .seasonal-hero h1, .thank-you-message h1 {
  font-size: 2.25rem;
  color: #204519;
  margin-bottom: 18px;
  line-height: 1.13;
}
.hero .btn-primary {
  margin-top: 18px;
}

/* ORGANIC SHAPE DECORATIVE ELEMENT for hero/sections */
@media (min-width: 1000px) {
  .hero, .about-hero, .recipes-hero, .tips-hero, .seasonal-hero, .thank-you-message {
    background-position: right 42px top 24px;
    background-size: 520px auto;
  }
}

/* TEAM BIOS */
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 12px;
}
.bio {
  flex: 1 1 222px;
  min-width: 210px;
}

/* RECIPE CARDS */
.recipe-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.recipe-card {
  background: #F2F5EF;
  border-radius: 24px 32px 22px 22px/18px 30px 24px 22px;
  padding: 25px 24px 28px;
  border: 1.5px solid #DFEAD9;
  box-shadow: 0 1px 10px 0 #30693e0e;
  min-width: 240px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: transform 0.14s, box-shadow 0.22s, border 0.2s;
}
.recipe-card:hover {
  box-shadow: 0 6px 25px 0 #20451918;
  border-color: #8EDB8D;
  transform: translateY(-3px) scale(1.04);
}

/* BLOG POSTS */
.post-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.post-preview {
  background: #FFFDF7;
  border-radius: 16px 40px 26px 32px/19px 34px 24px 29px;
  box-shadow: 0 1px 8px 0 #30693e0d;
  padding: 22px 20px;
  flex: 1 1 230px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1.5px solid #E1E8DE;
  transition: border-color 0.2s, box-shadow 0.18s, transform 0.14s;
}
.post-preview:hover {
  border-color: #8EDB8D;
  box-shadow: 0 4px 15px 0 #8EDB8D33;
  transform: translateY(-2px) scale(1.025);
}

/* BLOG CATEGORIES */
.category-tags {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.category-tags span {
  background: #E5EFDD;
  color: #30693E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  border-radius: 18px 24px 16px 24px/18px 20px 18px 16px;
  padding: 7px 16px;
  margin-bottom: 4px;
}

/* HIGHLIGHTS/TIP CARDS/NUTRITION FACTS/CALENDAR */
.tip-cards, .facts-grid, .calendar-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.tip-cards > div, .facts-grid > div, .calendar-grid > div {
  background: #EAF7EC;
  border-radius: 20px 30px 24px 34px/19px 17px 17px 18px;
  box-shadow: 0 1px 8px 0 #30693e0a;
  border: 1.3px solid #CFE9C7;
  padding: 23px 18px 18px;
  min-width: 192px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.17s, border 0.18s, transform 0.12s;
}
.tip-cards > div:hover,
.facts-grid > div:hover,
.calendar-grid > div:hover {
  box-shadow: 0 6px 13px 0 #30693e16;
  border-color: #8EDB8D;
  transform: translateY(-2px) scale(1.025);
}
.tip-cards > div img, .facts-grid > div img, .calendar-grid > div img {
  width: 34px;
  height: 34px;
  margin-bottom: 6px;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4000;
  background: #F2F5EF;
  color: #24321b;
  border-top: 3px solid #8EDB8D;
  box-shadow: 0 -2px 24px 0 #0000002a;
  display: flex;
  flex-direction: column;
  padding: 26px 16px 20px 16px;
  gap: 16px;
  animation: cookieSlideUp 0.44s cubic-bezier(0.6,0.1,0.5,1.0);
}
@keyframes cookieSlideUp {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-consent-banner .cookie-btn {
  border-radius: 20px 26px 18px 25px/20px 17px 17px 18px;
  padding: 10px 24px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  min-width: 130px;
  margin-right: 0;
  margin-bottom: 0;
  cursor: pointer;
  transition: background 0.19s, color 0.16s, transform 0.11s;
}
.cookie-consent-banner .cookie-btn.accept {
  background: #30693E;
  color: #FFFDF7;
}
.cookie-consent-banner .cookie-btn.reject {
  background: #E7DCD0;
  color: #204519;
}
.cookie-consent-banner .cookie-btn.settings {
  background: #8EDB8D;
  color: #204519;
}
.cookie-consent-banner .cookie-btn:hover {
  opacity: 0.95;
  transform: translateY(-2px) scale(1.04);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: #20451977;
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieFadeIn 0.24s cubic-bezier(0.7,0.2,0.4,0.8);
}
@keyframes cookieFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 32px 40px 28px 28px/21px 20px 32px 38px;
  box-shadow: 0 3px 34px 0 #30693e11;
  padding: 38px 24px 28px 24px;
  max-width: 420px;
  width: 93vw;
  max-height: 85vh;
  color: #20301F;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.cookie-modal h3 {
  color: #30693E;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
}
.cookie-modal ul {
  margin: 15px 0 18px 0;
  list-style: none;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 19px;
  top: 10px;
  font-size: 2rem;
  border: none;
  background: none;
  color: #30693E;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 11px;
}
.cookie-modal .modal-close:hover {
  background: #8EDB8D33;
}
.cookie-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.cookie-switch input[type='checkbox'] {
  accent-color: #8EDB8D;
  width: 1.38em;
  height: 1.38em;
}
.cookie-switch.essential label:after {
  content: "(immer aktiviert)";
  color: #4C5B2C;
  font-size: 0.9em;
  margin-left: 7px;
}
.cookie-modal .cookie-btn {
  width: 100%;
}

/* ==========================
   RESPONSIVE/MOBILE STYLES
   ========================== */
@media (max-width: 1240px) {
  .container {
    max-width: 992px;
  }
}
@media (max-width: 1000px) {
  .container {
    max-width: 90vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none !important;
  }
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section,
  .hero,
  .features,
  .about-intro,
  .recipes-preview,
  .tips-teaser,
  .newsletter,
  .about-hero,
  .mission-values,
  .team,
  .brand-story,
  .thank-you-message,
  .recipe-filters,
  .recipe-list,
  .submit-recipe,
  .tips-hero,
  .tip-highlights,
  .nutrition-facts,
  .seasonal-hero,
  .seasonal-suggestions,
  .ingredient-calendar, .blog-hero, .featured-posts,
  .blog-categories, .contact-hero, .contact-form-section, .contact-details,
  .privacy-policy,.gdpr-policy,.terms-policy,.cookie-policy {
    padding: 26px 8px;
    margin-bottom: 22px;
    border-radius: 28px;
  }
  .feature-grid,
  .card-container,
  .team-bios,
  .recipe-cards,
  .tip-cards,
  .facts-grid,
  .calendar-grid,
  .post-previews {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .footer-main-links {
    gap: 14px;
    justify-content: center;
  }
  .footer-brand img {
    width: 74px;
  }
  .category-tags {
    gap: 8px;
  }
  .cookie-modal {
    min-width: 0;
    padding: 26px 8px 22px 8px;
  }
}
@media (max-width: 520px) {
  html { font-size: 14px; }
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .hero h1, .about-hero h1, .recipes-hero h1, .tips-hero h1, .thank-you-message h1 {
    font-size: 1.45rem;
    margin-bottom: 10px;
  }
  .btn-primary, .btn-secondary {
    font-size: 0.97rem;
    min-width: 100px;
    padding: 10px 16px;
  }
}

/* ==========================
   ANIMATION & MICROINTERACTIONS
   ========================== */
/* Card/Section Fade in (optional, if js applies .fade-in) */
.fade-in {
  opacity: 0;
  transform: translateY(38px);
  animation: fadeSectionIn 0.64s cubic-bezier(.5,.13,.7,1.1) forwards;
}
@keyframes fadeSectionIn {
  to {
    opacity: 1;
    transform: none;
  }
}

/* =====================
   ACCESSIBILITY
   ===================== */
::selection {
  background: #d3f2c5;
}

/* =====================
   MISCELLANEOUS & OVERRIDES
   ===================== */
input[type="submit"], button[type="submit"], a.btn-primary, a.btn-secondary {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}
@media (hover: hover) and (pointer: fine) {
  a, button {
    transition: color 0.18s cubic-bezier(0.49,0.17,0.5,1),
                background 0.22s cubic-bezier(0.49,0.17,0.47,1),
                transform 0.10s cubic-bezier(0.49,0.19,0.5,1);
  }
}

/* =====================
   CLEAR FLEXBOX FLOATS
   ===================== */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ===============================
   ENSURE NO OVERLAPPING ELEMENTS
   =============================== */
.card,
.bio,
.recipe-card,
.tip-cards > div,
.facts-grid > div,
.calendar-grid > div,
.post-preview,
ul.feature-grid > li {
  margin-bottom: 20px;
}
.section, .hero, .features, .about-intro, .recipes-preview, .tips-teaser, .newsletter {
  margin-bottom: 60px;
}

/* =====================
   TESTIMONIALS (if used)
   ===================== */
.testimonial-card {
  background: #fff;
  color: #20301F;
  border-radius: 28px 34px 26px 42px/21px 29px 27px 29px;
  border: 1.5px solid #eaeaea;
  box-shadow: 0 2px 10px #30693e13;
}
.testimonial-card cite, .testimonial-card .author {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #30693E;
}

/* =====================
   VISUAL ORGANICITY – Organic shadows, shapes
   ===================== */
.hero, .about-intro, .team-bios, .features, .newsletter, .about-hero, .tips-hero, .thank-you-message {
  background-blend-mode: lighten;
}

/* Ensure no unwanted overlapping */
*:not(.cookie-modal):not(.cookie-consent-banner) {
  z-index: auto !important;
}

/* END OF FILE */
