/* ================= CSS RESET & BASE ================== */
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, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #12151a;
  color: #F5F7F6;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
main {
  flex: 1;
}
a {
  color: #E8A03E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,a:focus {
  color: #ffe16c;
  outline: none;
}
button, .cta-btn {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* ==== BRAND: COLORS & TYPOGRAPHY ==== */
:root {
  --color-primary: #274E37;
  --color-secondary: #E8A03E;
  --color-accent: #F5F7F6;
  --color-dark-bg: #15191f;
  --color-hero-bg: #192627;
  --color-neon: #3fffd6;
  --color-neon-alt: #58fcff;
  --color-text: #F5F7F6;
  --color-card-bg: #1d2528;
  --color-footer: #162118;
  --shadow1: 0 4px 20px 0 rgba(40,230,168,0.06);
  --shadow-glow: 0 0 8px #3fffd6, 0 0 24px #E8A03E;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #F5F7F6;
  letter-spacing: 1px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 1.75rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.5rem; }
}

p, li {
  color: var(--color-accent);
  font-size: 1rem;
}
.subheadline {
  font-family: 'Montserrat', Arial, 'Open Sans', sans-serif;
  font-size: 1.125rem;
  color: #a5e4cc;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px #1f7e6060;
}

/* =============== LAYOUT =============== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .section {
    padding: 56px 0 56px 0;
    margin-bottom: 84px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border-radius: 18px;
  box-shadow: var(--shadow1);
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.18s cubic-bezier(.19,1,.22,1), box-shadow 0.19s;
}
.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 24px #3fffd6, 0 4px 36px #E8A03E44;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #f7faf9;
  color: #192627;
  border-left: 5px solid var(--color-neon);
  border-radius: 14px;
  box-shadow: 0 2px 16px #1de6b544;
  flex-direction: column;
  max-width: 630px;
  width: 100%;
}
.testimonial-card blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: #15191f;
  line-height: 1.5;
}
.testimonial-card cite {
  color: #274E37;
  font-size: 1rem;
  margin-top: 6px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============ HERO & SECTION BACKGROUNDS ============= */
.hero-section {
  background: linear-gradient(120deg, #192627 70%, #22253a 100%);
  padding: 48px 0 48px 0;
  position: relative;
  box-shadow: 0 8px 48px -12px #27f1d857;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-section h1 {
  text-align: center;
  color: var(--color-neon);
  text-shadow: 0 4px 16px #E8A03E55;
}

.features-section {
  background: var(--color-dark-bg);
  box-shadow: 0 6px 40px -10px #e8a03e24;
  border-radius: 24px;
}
.features-section h2 {
  color: var(--color-secondary);
  letter-spacing: 1px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.feature-grid > div {
  background: var(--color-card-bg);
  padding: 28px 22px;
  border-radius: 15px;
  box-shadow: 0 2px 14px #3fffd625;
  flex: 1 1 230px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.16s;
  border: 1.3px solid #244b385c;
}
.feature-grid > div:hover {
  box-shadow: 0 0 22px #3fffd6, 0 4px 22px #E8A03E55;
  transform: translateY(-4px) scale(1.025);
}
.feature-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 6px #E8A03E77);
}

.cta-section {
  background: linear-gradient(90deg,#274E37 90%,#3fffd6 120%);
  border-radius: 22px;
  color: #fffbe2;
  box-shadow: 0 3px 28px #3fffd650;
  text-align: center;
}
.cta-section h2 {
  color: #fffbe2;
}

/* =============== BUTTONS ================ */
.cta-btn, .feature-grid a, .cookie-btn, .filter-bar input[type='submit'], .cookie-banner button {
  background: var(--color-neon);
  color: #15191f;
  font-size: 1.13rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 12px 30px;
  border-radius: 30px;
  box-shadow: 0 1px 11px #3fffd640;
  margin-top: 18px;
  transition: background 0.22s, color 0.16s, box-shadow 0.16s, transform 0.16s;
  outline: none;
  border: none;
  text-shadow: 0 1px 2px #a9eccf40;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cta-btn:hover, .cookie-btn:hover, .cookie-banner button:hover {
  background: #e6f755;
  color: #274E37;
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px) scale(1.025);
}

/* ==== FILTER BAR (Rezepte) ==== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  background: var(--color-card-bg);
  border-radius: 11px;
  padding: 15px 18px;
  box-shadow: 0 2px 10px #3fffd620;
}
.filter-bar span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #3fffd6;
  font-size: 1.07rem;
  font-weight: 600;
}
.filter-bar input[type='text'] {
  background: #232C34;
  color: #fffbe2;
  border: 1.6px solid #3fffd6;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 1rem;
  width: 180px;
  transition: border-color 0.18s;
}
.filter-bar input[type='text']:focus {
  border-color: var(--color-secondary);
  outline: none;
}

/* ========== TIPS & LISTS =========== */
.tip-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.tip-card {
  background: #284238;
  color: #fffbe2;
  box-shadow: 0 2px 14px #3fffd628;
  border-radius: 12px;
  padding: 22px 20px;
  max-width: 340px;
  flex: 1 1 200px;
  transition: box-shadow 0.13s, transform 0.14s;
  margin-bottom: 20px;
  border-left: 4px solid #3fffd6;
}
.tip-card:hover {
  box-shadow: 0 0 18px #3fffd6;
  transform: scale(1.03);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}
.text-section ul, .about-section ul, .values-section ul {
  margin-top: 10px;
  padding-left: 1.3rem;
}
.text-section li, .about-section li, .values-section li {
  list-style-type: disc;
  margin-bottom: 9px;
  color: #abebdb;
  font-size: 1rem;
}

.product-calendar {
  margin: 30px 0 0 0;
  font-size: 1.07rem;
  color: #ffe16c;
  background: #222f22;
  border-radius: 12px;
  box-shadow: 0 2px 14px #3fffd623;
  padding: 18px 20px;
  text-align: center;
}

/* ============== FOOTER ============== */
footer {
  background: var(--color-footer);
  color: #e1ffee;
  padding: 40px 0 20px 0;
  margin-top: 60px;
  box-shadow: 0 -8px 38px #1de6b527;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-nav a {
  color: #3fffd6;
  font-weight: 600;
  font-size: 1rem;
}
.footer-nav a:hover {
  text-decoration: underline;
  color: #E8A03E;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 10px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #E8A03E;
}
.copyright {
  color: #6ebfa5;
  text-align: center;
  font-size: 0.95rem;
  margin-top: 18px;
}

/* ========== HEADER & NAV =========== */
header {
  width: 100%;
  background: #141a18f0;
  position: sticky;
  top: 0; left: 0; z-index: 1000;
  box-shadow: 0 2px 16px #3fffd610;
  padding: 0 0 0 0;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  padding: 18px 24px 18px 24px;
  justify-content: flex-start;
}
.logo {
  margin-right: 28px;
  display: flex;
  align-items: center;
}
.main-nav a {
  color: #3fffd6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.09rem;
  letter-spacing: .04em;
  transition: color .18s;
  padding: 5px 13px;
  border-radius: 20px;
}
.main-nav a:hover, .main-nav a.active {
  background: #3fffd6;
  color: #12151a;
  box-shadow: 0 0 5px #E8A03E67;
}

/* MOBILE NAVIGATION STYLES */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  font-size: 2.1rem;
  color: #3fffd6;
  background: none;
  border: none;
  margin-left: auto;
  margin-right: 14px;
  padding: 8px 10px;
  border-radius: 9px;
  transition: background 0.16s;
  z-index: 1002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #1de6b522;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #192627fa;
  z-index: 1300;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.5,1.4,.35,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0); 
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 28px 0 0;
  font-size: 2.3rem;
  color: #3fffd6;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #E8A03E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  align-items: center;
  margin-top: 18px;
}
.mobile-nav a {
  color: #fffbe2;
  font-size: 1.25rem;
  padding: 10px 28px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background .15s, color .13s;
}
.mobile-nav a:hover {
  background: #3fffd6;
  color: #15191f;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* =========== SECTION SPECIFIC =========== */
.about-section {
  background: var(--color-card-bg);
  border-radius: 18px;
  box-shadow: 0 2px 16px #3fffd625;
}
.values-section, .stories-section, .legal-section {
  background: #181f26;
  border-radius: 18px;
  box-shadow: 0 2px 12px #274E3780;
  margin-bottom: 35px;
  padding: 34px 22px;
}
.thanks-section {
  background: #202637;
  border-radius: 22px;
  box-shadow: 0 2px 16px #3fffd629;
  padding: 46px 18px;
  text-align: center;
}

.location-map {
  background: #232C34;
  color: #abebdb;
  border-radius: 12px;
  padding: 15px 16px;
  margin-top: 14px;
  font-size: 1rem;
}

/* =========== COOKIE CONSENT BANNER =========== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #15251bfa;
  color: #F5F7F6;
  border-top: 4px solid #3fffd6;
  box-shadow: 0 -2px 24px #3fffd633, 0 0 0 #0000;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  gap: 14px;
  font-size: 1rem;
  transition: transform .34s cubic-bezier(.32,1,.34,1), opacity .21s;
}
.cookie-banner[aria-hidden='true'] {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  text-align: center;
  color: #fffbe2;
}
.cookie-banner__btn-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 8px 0 0 0;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border-radius: 15px;
  background: #3fffd6;
  color: #161e15;
  padding: 10px 22px;
  font-size: 1rem;
  box-shadow: 0 1px 10px #3fffd618;
  margin-bottom: 0;
  border: none;
  transition: background .13s, color .13s;
}
.cookie-btn.settings {
  background: none;
  color: #3fffd6;
  border: 1.2px solid #3fffd6;
}
.cookie-btn.settings:hover {
  background: #3fffd626;
  color: #E8A03E;
}
.cookie-btn.reject {
  background: #E8A03E;
  color: #1d2528;
}
.cookie-btn.reject:hover {
  background: #d6890a;
  color: #fffbe2;
}

/* =========== COOKIE MODAL PREFERENCES =========== */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 89vw;
  max-width: 420px;
  background: #222f22;
  color: #fffbe2;
  border-radius: 18px;
  box-shadow: 0 8px 44px #3fffd654;
  z-index: 3400;
  padding: 32px 22px;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  display: flex; flex-direction: column; gap: 16px;
  transition: opacity .23s, transform .32s;
}
.cookie-modal[aria-hidden='true'] {
  transform: translate(-50%, -40%) scale(.93);
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #3fffd6;
}
.cookie-modal__option-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  margin-bottom: 10px;
  font-size: 1.07rem;
  background: #182418;
  border-radius: 8px;
  padding: 10px 12px;
}
.cookie-modal__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-modal__switch {
  position: relative;
  width: 38px;
  height: 20px;
}
.cookie-modal__switch input[type=checkbox] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal__slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #4b877b;
  border-radius: 12px;
  transition: background .17s;
}
.cookie-modal__switch input:checked + .cookie-modal__slider {
  background: #3fffd6;
}
.cookie-modal__slider:before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 2px; bottom: 2px;
  background: #f5f7f6;
  border-radius: 50%;
  transition: transform .19s;
}
.cookie-modal__switch input:checked + .cookie-modal__slider:before {
  transform: translateX(18px);
}
.cookie-modal__desc {
  font-size: 0.95rem;
  color: #e5efe8;
}
.cookie-modal__close {
  position: absolute;
  right: 24px; top: 18px;
  font-size: 1.5rem;
  color: #3fffd6;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #E8A03E;
}
.cookie-modal__actions {
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 10px;
}

/* ===== RESPONSIVE & ADAPTIVE FLEX ===== */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.07rem; }
  .feature-grid, .tip-cards, .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .features-section, .about-section, .seasons-section, .values-section, .legal-section {
    padding: 30px 10px;
    margin-bottom: 32px;
  }
  .footer-nav {
    gap: 16px;
    font-size: .97rem;
  }
  .footer-contact {
    font-size: .98rem;
  }
}
@media (min-width: 769px) {
  .feature-grid, .tip-cards, .content-grid, .card-container {
    flex-direction: row;
  }
  .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: center;
  }
}

/* ==== MICROINTERACTIONS ==== */
.cta-btn:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .main-nav a:focus {
  outline: 2px solid #3fffd6;
  outline-offset: 4px;
  box-shadow: 0 0 0 5px #E8A03E4d;
}

input:focus, textarea:focus {
  outline: 2px solid #E8A03E;
  border-color: #E8A03E;
}

::selection {
  background: #3fffd6;
  color: #251710;
}

/* Hide scroll on mobile menu when open */
body.mobile-menu--open {
  overflow: hidden;
}

/* =============== UTILITIES ============== */
.text-center { text-align: center; }

/* ============ SPECIAL SECTION CLASSES ============= */
.stories-section {
  background: #232C34;
}
.seasons-section {
  background: #1a2227;
  border-radius: 20px;
  box-shadow: 0 2px 18px #3fffd622;
  padding: 46px 23px;
}
.faq-section ul, .faq-section {
  margin: 0 0 10px 0;
  padding: 0;
}
.faq-section li {
  margin-bottom: 12px;
  color: #abebdb;
}

/* =========== MODAL OVERLAY FOR COOKIES ========== */
.cookie-modal__overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: #101717c1;
  z-index: 3399;
  display: block;
  transition: opacity .20s;
}
.cookie-modal__overlay[aria-hidden='true'] {
  opacity: 0;
  pointer-events: none;
}

/* ========== FORM INPUTS (for search/filter etc) */
input, textarea {
  font-family: 'Open Sans', 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}

/* ========== ACCESSIBILITY ============= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ================= END ================= */
