/* 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;
}
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F5E9DA;
  color: #345C2A;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
article, aside, footer, header, nav, section, main {
  display: block;
}
ol, ul {
  list-style: none;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #B74B26;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus { outline: 2px dashed #345C2A; outline-offset: 4px; }
a:hover {
  color: #AD3C27;
  text-decoration: underline;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  background: none;
  border: none;
  padding: 0;
  outline: none;
  color: inherit;
}
button[disabled]{ opacity:0.5; pointer-events:none; }

/* FONT IMPORTS - Montserrat (display), Open Sans (body) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

:root {
  --color-bg: #F5E9DA;
  --color-primary: #345C2A;
  --color-secondary: #FFFFFF;
  --color-accent: #B74B26;
  --color-accent-dark: #AD3C27;
  --color-shadow: #BFA980;
  --color-border: #E2C9A0;
  --color-muted: #E9D7BE;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* --- Vintage/Retro Helper Colors & Patterns --- */
body {
  background: var(--color-bg);
  /* subtle retro paper-like */
  background-image: repeating-linear-gradient(135deg, #f4ecd8 0, #f4ecd8 6px, #e4d2b7 6px, #e4d2b7 18px);
  background-size: 60px 60px;
}

::-webkit-scrollbar {
  width: 12px;
  background: #e4d2b7;
}
::-webkit-scrollbar-thumb {
  background: #bfa980;
  border-radius: 8px;
}

/* ------ General Containers ------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Section Spacing Pattern */
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

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


/* ------ Typography -------- */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--color-primary);
  margin-bottom: 14px;
  line-height: 1.14;
  text-shadow: 0 2px 0 #e4d2b7;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-shadow: 0 1px 0 #E9D7BE;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
  text-shadow: 0 1px 0 #E9D7BE;
}
h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
}
p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}
blockquote {
  padding: 0;
  font-size: 1.12rem;
  font-family: var(--font-body);
  color: #39362c;
  border-left: 6px solid var(--color-accent);
  background: #fffaf4;
  border-radius: 0 16px 16px 0;
  margin-bottom: 8px;
  line-height: 1.6;
}
blockquote footer {
  font-family: var(--font-display);
  color: #858070;
  font-size: 0.96rem;
  padding-top: 3px;
}
strong, b {
  font-weight: 700;
}

/* ------ Header & Logo ------- */
header {
  background: #fff7ed;
  border-bottom: 4px solid var(--color-accent);
  box-shadow: 0 2px 10px 0 #ede5d7;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 72px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: sepia(0.5) brightness(0.92);
}

/* ------ Main Navigation ------- */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1rem;
  padding: 4px 12px;
  border-radius: 6px;
  transition: background 0.16s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

/* CTA Button Style */
.cta-primary, .cta-secondary {
  font-family: var(--font-display);
  font-size: 1.07rem;
  font-weight: 700;
  line-height: 1.15;
  border-radius: 32px;
  box-shadow: 2px 5px 14px 0 #E2C9A0;
  padding: 10px 32px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.18s cubic-bezier(.4,1,.7,1);
  border: none;
  margin-left: 16px;
  letter-spacing: 1px;
}
.cta-primary {
  background: var(--color-accent);
  color: #fff;
  border: 2px solid var(--color-accent);
}
.cta-primary:hover, .cta-primary:focus {
  background: #fff;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.cta-secondary {
  background: #fff;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-accent);
  color: #fff;
}

/* ------ Mobile Nav ------- */
.mobile-menu-toggle {
  background: var(--color-accent);
  color: #fff;
  font-size: 2rem;
  padding: 8px 18px;
  border-radius: 100px;
  display: none;
  border: 2px solid #fff;
  margin-left: 16px;
  transition: background .15s, color .12s;
  box-shadow: 0 1px 4px #cbbea0;
}
.mobile-menu-toggle:focus {
  outline: 2px dashed var(--color-accent);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffaf4;
  box-shadow: 0 6px 48px 12px rgba(180, 110, 55, 0.18);
  z-index: 1100;
  transform: translateX(100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(.5,1.1,.64,1), opacity 0.22s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: var(--color-accent);
  border: 0;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 16px 24px 0 0;
  cursor: pointer;
  transition: color .13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 64px;
  align-items: center;
  flex: 1;
}
.mobile-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 900;
  background: #fce5cf;
  border-radius: 20px;
  padding: 10px 50px;
  width: 90%;
  text-align: center;
  transition: background 0.14s;
  box-shadow: 0 2px 8px #e7d6be;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

@media (max-width: 1019px){
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1020px){
  .mobile-menu { display: none !important; }
}

/* ------ HERO -------- */
.hero {
  background: #fffdf9 url('../assets/retro-pattern-light.svg') repeat;
  border-bottom: 4px solid var(--color-accent);
  box-shadow: 0 4px 32px 0 #e2c9a023;
  padding-top: 48px;
  padding-bottom: 48px;
  margin-bottom: 56px;
}
.hero .container {
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--color-accent);
}
.hero p {
  font-size: 1.14rem;
  color: #553a02;
}
.hero .cta-primary {
  margin-top: 28px;
}

/* -- Features -- */
.features, .feature-highlight  {
  background: #fff7ed;
  border-radius: 22px;
  box-shadow: 0 7px 32px #E2C9A0;
}
.features h2, .feature-highlight h2 {
  color: var(--color-accent);
  padding-bottom: 10px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 16px;
}
.feature {
  background: #fffefb;
  border-radius: 16px;
  border: 2px solid #e2c9a0;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  box-shadow: 0 3px 16px #e2c9a04d;
  padding: 28px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.22s;
  position: relative;
}
.feature img {
  width: 42px;
  height: 42px;
  filter: sepia(.4) contrast(.85) brightness(1.15);
}
.feature:hover {
  box-shadow: 0 8px 32px #d3ba99;
}

/* -- About Preview -- */
.about-preview, .about-section, .gdpr-section, .datenschutz-section, .terms-section, .cookie-policy {
  background: #fffefb;
  border-radius: 22px;
  box-shadow: 0 3px 16px #E2C9A0;
}
.about-preview h2 { color: var(--color-primary); }
.about-preview .cta-secondary {
  margin-top: 18px;
}

/* ------- Recipe List + Cards --------- */
.recipe-list .content-wrapper, .featured-recipes .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.recipe-item {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  background: #fffefa;
  border-radius: 16px;
  border: 2px solid #e2c9a0;
  box-shadow: 0 3px 16px #e2c9a066;
  padding: 20px 18px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .22s, border-color .18s;
  font-size: 1.06rem;
}
.recipe-item h3 { font-size: 1.18rem; }
.recipe-item:hover {
  border-color: var(--color-accent);
  box-shadow: 0 6px 28px #d3ba99;
}

/* ------- CTA Newsletter Section --------- */
.cta-newsletter {
  background: #ffe6c9;
  border-radius: 22px;
  box-shadow: 0 1px 8px #e2c9a048;
  text-align: center;
  margin-bottom: 50px;
}
.cta-newsletter .content-wrapper {
  align-items: center;
}

/* -------------- Testimonial Cards --------------- */
.testimonials {
  background: #fffdf9;
  border-radius: 13px;
  box-shadow: 0 0 12px #ecc69d33;
}
.testimonials h2 {
  color: var(--color-accent);
  text-align: center;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid #e2c9a0;
  border-left: 12px solid var(--color-accent);
  border-radius: 24px;
  padding: 20px;
  min-width: 270px;
  max-width: 350px;
  box-shadow: 0 2px 18px #e2c9a088;
  transition: border-color .2s, box-shadow .18s;
}
.testimonial-card:hover {
  border-color: var(--color-accent-dark);
  box-shadow: 0 6px 32px #e2c9a066;
}
.testimonial-card blockquote p {
  color: #392e19;
  font-family: var(--font-body);
  font-size: 1.13rem;
  background: none;
  border: none;
  margin: 0 0 6px;
  padding: 0;
}
.testimonial-card blockquote footer {
  font-size: 1rem;
  color: #93754a;
}

/* --------- FAQ Section ----------- */
.faq .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fffefb;
  border-radius: 12px;
  border: 2px solid #e2c9a0;
  padding: 18px 20px;
  margin-bottom: 10px;
  transition: box-shadow .12s;
  box-shadow: 0 1px 6px #e2c9a030;
}
.faq-item h3 {
  color: var(--color-accent);
  font-size: 1.12rem;
}

/* --------- Contact Info Section --------- */
.contact-info {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.contact-info img {
  height: 24px;
  width: 24px;
  filter: sepia(.6) brightness(0.92);
  margin-right: 6px;
}

/* --------- Footer ----------- */
footer {
  background: #fff7ed;
  border-top: 4px solid var(--color-accent);
  margin-top: 0;
  padding: 32px 0 20px 0;
}
footer .container {
  align-items: center;
  flex-direction: column;
  gap: 6px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: var(--color-primary);
  background: #efe1cb;
  border-radius: 10px;
  font-family: var(--font-display);
  padding: 7px 18px;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.14s, background 0.13s;
}
.footer-nav a:hover{
  color: var(--color-accent);
  background: #ebccb1;
}
.footer-contact {
  font-size: 0.98rem;
  color: #877055;
  margin-bottom: 3px;
}
.footer-copy {
  color: #baa276;
  font-size: 0.95rem;
}

/* -------- Cookie Consent Banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff8ea;
  border-top: 4px solid var(--color-accent);
  box-shadow: 0 -4px 26px #e2c9a088;
  z-index: 2000;
  padding: 24px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 1.03rem;
  transition: transform .23s cubic-bezier(.46,1,.64,1), opacity .2s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .banner-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 0;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 28px;
  padding: 7px 24px;
  cursor: pointer;
  border: 2px solid var(--color-accent);
  background: #fff;
  color: var(--color-accent);
  margin-right: 4px;
  margin-top: 8px;
  margin-bottom: 0;
  transition: background .16s, color .18s;
}
.cookie-btn.accept {
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--color-accent);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #edd0c1;
}
.cookie-btn.settings {
  background: #fffefb;
  color: var(--color-primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #fae6d6;
}

/* ------ Cookie Modal -------- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(51,41,10,0.38);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fffdf9;
  border-radius: 18px;
  box-shadow: 0 8px 56px #e2c9a0cc;
  padding: 38px 24px 32px 24px;
  min-width: 320px;
  max-width: 94vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.cookie-modal h3 {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-size: 1.22rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  margin-bottom: 12px;
  display: flex; flex-direction: row; align-items: center; gap: 10px;
}
.cookie-category .toggle {
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
}
.cookie-modal .modal-controls {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  color: var(--color-accent);
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-primary);
}
.cookie-switch {
  appearance: none;
  width: 38px;
  height: 24px;
  background: #e3c69b;
  border-radius: 16px;
  position: relative;
  outline: none;
  box-shadow: 0 1px 4px #e2c9a080;
  transition: background 0.17s;
  margin-left: 9px;
}
.cookie-switch:checked {
  background: var(--color-accent);
}
.cookie-switch:before {
  content: '';
  display: block;
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 100px;
  transition: left 0.17s;
}
.cookie-switch:checked:before {
  left: 17px;
}
.cookie-category.essential {
  opacity: 0.7;
}
.cookie-category.essential .cookie-switch {
  pointer-events: none;
  background: #bbb9a3;
}

/* --------- Utility Patterns --------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fffefb;
  border-radius: 16px;
  border: 2px solid #e2c9a0;
  box-shadow: 0 3px 14px #e2c9a066;
  padding: 28px 18px;
}
.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;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- Spacing utility --- */
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mt-32 { margin-top: 32px; }
p + p { margin-top: 10px; }


/* ------- Responsiveness ----------- */
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
  }
  .feature-grid, .recipe-list .content-wrapper, .featured-recipes .content-wrapper, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature, .recipe-item, .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.5rem; }
  h3, .h3 { font-size: 1.15rem; }
  .section, section { padding: 22px 9px; margin-bottom: 36px; }
  .cta-primary, .cta-secondary { padding: 9px 20px; font-size: 1rem; }
  .hero { padding-top: 20px; padding-bottom: 20px; margin-bottom: 28px; }
  .container { padding-left: 8px; padding-right: 8px; }
  .content-wrapper { gap: 12px; }
  .feature, .recipe-item, .testimonial-card, .card {
    padding: 15px 8px;
  }
  .feature {
    gap: 11px;
  }
  .footer-nav { gap: 10px; }
  .footer-contact, .footer-copy { font-size: .85rem; }
  .mobile-nav a { font-size: 1rem; padding: 8px 10px; }
}
@media (max-width: 530px) {
  .container { padding-left: 2px; padding-right: 2px; }
  .footer-nav { flex-direction: column; align-items:center; gap: 3px; }
  .cookie-modal { min-width: 90vw; }
}
@media (max-width: 415px) {
  .hero h1 { font-size: 1.23rem; }
  .cta-primary, .cta-secondary { padding: 8px 6vw; font-size: .95rem; }
}

/* --- Vintage patterns & decorative --- */
/* Optionally insert repeated background or subtle border-rim for retro feel */
.feature, .testimonial-card, .faq-item, .recipe-item, .card {
  border: 2.5px solid #e7e1cd;
  box-shadow: 0 2px 14px #e7d6be58;
}

/* ---- SHADOW/ELEVATION for interactive ---- */
.card:hover, .feature:hover, .recipe-item:hover, .faq-item:hover {
  box-shadow: 0 8px 28px #d0c0a0;
}

/* ---- MICRO-INTERACTIONS & EFFECTS ---- */
.cta-primary, .cta-secondary, .cookie-btn, .mobile-menu-toggle {
  transition: background .17s, color .17s, box-shadow .22s;
}
.cta-primary:active, .cta-secondary:active, .cookie-btn:active, .mobile-menu-toggle:active {
  box-shadow: 0 2px 7px #e2c9a088 inset;
}

/* ---- Card Alignment FIX ---- */
.card, .feature, .recipe-item, .testimonial-card, .faq-item {
  margin-bottom: 20px;
}

/* Ensure no overlap */
.card:not(:last-child), .feature:not(:last-child), .testimonial-card:not(:last-child), .faq-item:not(:last-child), .recipe-item:not(:last-child) {
  margin-bottom: 20px;
}

/* --- Customization for Nostalgic/Retro Touches --- */
/* Decorative dashed lines, geometric borders, and retro-inspired paddings */
.feature,
.faq-item,
.card,
.recipe-item,
.testimonial-card {
  border-radius: 13px 22px 15px 19px/19px 14px 27px 7px;
  border-style: solid;
  border-width: 2.5px;
  border-color: #e2c9a0;
  background-clip: padding-box;
}

hr {
  border: none;
  border-top: 2.5px dashed #f0cbb2;
  margin: 28px 0;
}

/* ------- Accessibility --------- */
:focus {
  outline: 2px dashed var(--color-accent);
  outline-offset: 3px;
}

[tabindex]:focus {
  outline: 2px dashed var(--color-primary);
}

/* --------- Custom Section Patterns --------- */
/* About/list/deco images etc can be extended with similar effects */

/* ------- Animations ---------- */
@keyframes slide-down {
  0% { transform: translateY(-60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes fade-in {
  0%{opacity:0;}
  100%{opacity:1;}
}
.hero, .cta-newsletter, .features, .feature-highlight, .about-preview, .section, section {
  animation: slide-down 0.68s cubic-bezier(.54,1,.68,1) 0.05s both;
}
.card, .feature, .recipe-item, .testimonial-card, .faq-item {
  animation: fade-in 0.9s cubic-bezier(.29,1.01,.51,1) both;
}


/* --------- Print Styles --------- */
@media print {
  header, nav, .footer-nav, .footer-contact, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body, .container, main, .thankyou-section, section {
    background: #fff !important;
    color: #222;
    box-shadow: none !important;
  }
}
