/*-------------------------------------
BlazeSpire Ernährung Vintage Retro CSS
-------------------------------------*/

/* 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,main,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 { box-sizing: border-box; font-size: 16px; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.5; background: #FFF7EF; }
ul,ol { list-style: none; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/*--------------------
Vintage Retro Variables
---------------------*/
:root {
  --primary: #276749;
  --secondary: #F5F3EF;
  --accent: #B45100;
  --background: #FFF7EF;
  --surface: #F5E8D6;
  --surface-light: #FAF4EC;
  --vintage-yellow: #FEDC88;
  --vintage-blue: #205372;
  --vintage-red: #D83C26;
  --text-dark: #2A1C0B;
  --text-light: #FFF7EF;

  --font-display: 'Montserrat', 'Arial Rounded MT Bold', 'Arial', sans-serif;
  --font-body: 'Open Sans', 'Helvetica Neue', Verdana, Arial, sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 32px rgba(42,28,11,0.10);
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat'), local('Montserrat-Bold');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans-Regular');
}

/*--------------------
Body & Typography
---------------------*/
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--background);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: .02em;
  line-height: 1.14;
}
h1 { font-size: 2.8rem;  font-weight: 700; letter-spacing: .06em; text-shadow: 2px 2px 0 #fedc88, 0 2px 10px #eabc6b18; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.35rem;  }
h4 { font-size: 1.15rem;  }
h5,
h6 { font-size: 1rem;  }
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.13rem; }
}

p, li, address, input, button {
  font-size: 1rem;
  line-height: 1.6;
}
strong { font-weight: 700; }
em, i { font-style: italic; }

.subheadline {
  color: var(--vintage-blue);
  font-size: 1.12rem;
  font-family: var(--font-body);
  margin-bottom: 24px;
  text-shadow: 0 1px 0 var(--vintage-yellow);
}

/*--------------------
Containers
---------------------*/
.container {
  width: 100%;
  max-width: 1144px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/*--------------------
Header & Navigation
---------------------*/
header {
  width: 100%;
  background: var(--surface-light);
  border-bottom: 3px double var(--vintage-yellow);
  z-index: 20;
  box-shadow: 0 2px 6px #eabc6b18;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px 12px 20px;
}
header img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background .18s, color .18s;
  letter-spacing: .01em;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--vintage-yellow);
  color: var(--vintage-blue);
  box-shadow: 0 1px 0 #fedc88,0 2px 6px #eabc6b18;
}

.cta-button {
  font-family: var(--font-display);
  background: var(--accent);
  color: var(--text-light);
  padding: 10px 30px;
  border-radius: var(--radius);
  font-size: 1.17rem;
  font-weight: bold;
  letter-spacing: .03em;
  transition: background .18s, transform .12s, box-shadow .18s;
  box-shadow: 0 4px 18px #ba47004e, 0 1px 0 #fedc88;
  border: none;
  cursor: pointer;
  margin-left: 14px;
  text-shadow: 0 2px 2px #883b0050;
}
.cta-button:hover, .cta-button:focus {
  background: var(--vintage-red);
  color: #fff8ed;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px #c642002e;
}

/*--------------------
Mobile Menu
---------------------*/
.mobile-menu-toggle {
  background: var(--vintage-yellow);
  color: var(--vintage-blue);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  padding: 7px 16px 7px 16px;
  cursor: pointer;
  display: none;
  z-index: 70;
  box-shadow: 0 2px 8px #ecc96b11;
  transition: background .12s, color .12s;
}
.mobile-menu-toggle:active {
  background: var(--accent);
  color: #fff;
}
@media (max-width: 980px) {
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--surface-light);
  box-shadow: 0 0 28px #85671026;
  z-index: 120;
  transform: translateX(-100vw);
  transition: transform .38s cubic-bezier(.76,-0.09,.6,1.21);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 18px 28px 24px 34px;
  gap: 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.5rem;
  padding: 5px 12px;
  align-self: flex-end;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 12px 0 0 0;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--accent);
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  text-align: left;
  transition: background .13s, color .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vintage-yellow);
  color: var(--vintage-blue);
}
@media (max-width: 980px) {
  .mobile-menu {
    display: flex;
  }
}

/*--------------------
Section Spacing & Cards
---------------------*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px dashed var(--vintage-yellow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--surface-light);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px #ecdca760;
  margin-bottom: 20px;
  position: relative;
  padding: 20px 22px;
  min-width: 220px;
  flex: 1 1 280px;
  border: 1.5px solid var(--vintage-yellow);
  transition: box-shadow .18s;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 32px #bda96130;
}

.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;
  }
}

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

.featured-story {
  background: #ffe6bc;
  border-left: 7px solid var(--vintage-red);
  border-radius: var(--radius-sm);
  padding: 16px 30px;
  font-style: italic;
  color: var(--primary);
  margin-top: 36px;
  box-shadow: 0 3px 14px #d7721a18;
}

/*----------------------
Lists, Feature Grids, etc
-----------------------*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin: 35px 0 10px 0;
}
.feature-grid li {
  display: flex;
  align-items: flex-start;
  background: #fae4c5;
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  gap: 18px;
  min-width: 248px;
  flex: 1 1 265px;
  border: 1.5px solid var(--vintage-yellow);
  box-shadow: 0 1px 11px #f2bc5040;
}
.feature-grid img {
  width: 44px; height: 44px;
  margin-right: 12px;
}
.feature-description strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.10rem;
}

.recipe-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}
.recipe-categories a {
  color: var(--primary);
  background: #ebefe5;
  font-family: var(--font-display);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: background .15s;
}
.recipe-categories a:hover,
.recipe-categories a:focus {
  background: var(--vintage-yellow);
  color: var(--vintage-blue);
}
.recipe-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.recipe-tags {
  background: var(--vintage-yellow);
  color: var(--primary);
  font-size: 0.95rem;
  margin-left: 8px;
  padding: 2px 11px;
  border-radius: 6px;
  letter-spacing: .01em;
  font-family: var(--font-body);
}

.principle-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 26px 0 20px 0;
}
.principle-list li {
  display: flex;
  align-items: flex-start;
  background: #f9efd6;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  gap: 14px;
  min-width: 180px;
  flex: 1 1 210px;
  border: 1.5px solid var(--vintage-yellow);
}
.principle-list img {
  width: 32px; height: 32px; margin-right: 10px;
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.topic-tags a {
  background: var(--vintage-yellow);
  color: var(--primary);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.99rem;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 25px 0;
}
.team-member {
  background: #ffe0c7;
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  min-width: 180px;
  flex: 1 1 230px;
  box-shadow: 0 2px 12px #eabc6b1a;
  border-left: 5px solid var(--accent);
}
.team-member strong {
  color: var(--vintage-red);
  font-family: var(--font-display);
  font-size: 1.07rem;
}
.team-member span {
  display: block;
  color: var(--primary);
  font-size: 0.98rem;
  margin-bottom: 11px;
}

/*----------------------
Hero & Main Titles
----------------------*/
.hero {
  background: var(--vintage-yellow);
  border-bottom: 6px double var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 44px 0 36px 0;
  margin-bottom: 50px;
  box-shadow: 0 1px 24px #eed38f25;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.hero h1 {
  color: var(--vintage-blue);
  text-shadow: 2px 2px 0 #f5e8d6, 0 2px 10px #d9e5ed33;
  letter-spacing: .06em;
}
.hero .subheadline {
  color: var(--accent);
  font-weight: 500;
}
.hero .cta-button {
  margin-top: 16px;
}

/*----------------------
Testimonial Cards
----------------------*/
.testimonials, .testimonial-card {
  background: none;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 28px 18px 28px;
  margin-bottom: 26px;
  background: #FFF;
  border-radius: var(--radius);
  border-left: 7px solid var(--accent);
  box-shadow: 0 3px 22px #253f2a19;
  max-width: 690px;
  color: var(--primary);
  font-family: var(--font-body);
  position: relative;
  transition: box-shadow .17s;
}
.testimonial-card:before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3rem;
  position: absolute;
  top: 0px; left: 12px;
  color: var(--vintage-yellow);
  opacity: 0.7;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px #bda96136;
}
.testimonial-details {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  color: var(--text-dark);
}
.stars {
  color: var(--accent);
  letter-spacing: .07em;
  font-size: 1.1rem;
  margin-left: 8px;
}

/*-------------------
Footer
---------------------*/
footer {
  background: var(--surface);
  color: var(--primary);
  border-top: 3px dashed var(--vintage-yellow);
  margin-top: 44px;
  font-size: 0.97rem;
  padding-top: 32px;
  box-shadow: 0 -2px 14px #f4d29414;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 13px;
}
.footer-nav a {
  background: var(--vintage-yellow);
  color: var(--vintage-blue);
  padding: 6px 14px;
  border-radius: 18px;
  transition: background .15s;
  font-size: 0.99rem;
}
.footer-nav a:hover {
  background: var(--accent);
  color: #fff;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.footer-info img {
  max-height: 38px;
}
.address, address {
  font-style: normal;
  color: var(--text-dark);
  font-size: 0.97rem;
  text-align: center;
  margin-bottom: 0;
}

/*----------------------
Forms, Search, Utilities
------------------------*/
input[type="search"] {
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  background: #fff9e6;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1rem;
  outline: none;
  width: 100%;
  transition: border .14s;
}
input[type="search"]:focus {
  border: 2px solid var(--primary);
  background: var(--vintage-yellow);
}
.search-bar {
  margin: 15px 0 0 0;
  max-width: 400px;
  width: 100%;
}

/*-----------------
Address & Details
------------------*/
.contact-details, .map-location {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-details img, .map-location img {
  width: 27px; height: 27px;
  margin-right: 7px;
}

/*----------------------
Legal, About, Thank You
----------------------*/
.legal {
  background: #fbeec3;
}
.brand-story {
  background: #ffeec7;
  border-radius: var(--radius-sm);
  padding: 18px 32px;
  margin: 32px 0 0 0;
  border-left: 6px solid var(--accent);
}
.thank-you {
  background: #fffbe8;
  border-radius: var(--radius);
  padding: 44px 24px;
  margin: 42px 0 16px 0;
  box-shadow: 0 2px 23px #eabc6b18;
}
.confirmation-message {
  color: var(--primary);
  font-family: var(--font-display);
  margin-bottom: 18px;
}
.next-steps { color: var(--text-dark); }

/*--------------------
Buttons & Interactions
----------------------*/
button {
  font-family: var(--font-display);
  background: var(--accent);
  color: var(--text-light);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 700;
  margin: 0 4px;
  transition: background .17s, box-shadow .13s, color .14s;
}
button:hover, button:focus {
  background: var(--vintage-blue);
  color: #ffeccf;
  box-shadow: 0 4px 16px #27674920;
  outline: none;
}

/*-------------------------
Cookie Consent Banner
--------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--surface-light);
  color: var(--primary);
  border-top: 4px double var(--accent);
  box-shadow: 0 -2px 22px #bc8c4a29;
  z-index: 999;
  padding: 22px 16px 16px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  transition: transform .26s cubic-bezier(.59,-0.09,.66,1.24), opacity .14s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner__text {
  flex: 1 1 220px;
  font-size: 1.03rem;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner .cookie-settings-btn {
  background: var(--vintage-yellow);
  color: var(--primary);
  border: 1px solid var(--accent);
  padding: 7px 16px;
  font-size: 0.98rem;
  border-radius: 8px;
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: var(--accent);
  color: #fffde8;
}
.cookie-banner .accept-btn {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .accept-btn:hover {
  background: var(--vintage-blue);
  color: var(--vintage-yellow);
}
.cookie-banner .reject-btn {
  background: var(--vintage-red);
  color: #fffef6;
}
.cookie-banner .reject-btn:hover {
  background: var(--accent);
  color: #fffde8;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 1001;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,34,20,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .21s;
}
.cookie-modal-backdrop.active {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fffbe8;
  border-radius: var(--radius);
  box-shadow: 0 4px 32px #99500025;
  padding: 36px 34px 24px 34px;
  max-width: 340px;
  width: 94vw;
  z-index: 1200;
  text-align: left;
  position: relative;
}
.cookie-modal h3 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-modal .category-label {
  flex: 1 1 100px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .toggle-switch {
  width: 38px; height: 22px;
  border-radius: 12px;
  background: #f3d298;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.cookie-modal .toggle-switch input {
  display: none;
}
.cookie-modal .toggle-slider {
  position: absolute;
  top: 2.2px; left: 2.2px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--accent);
  transition: left .16s;
  box-shadow: 0 1px 3px #b35e1718;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider {
  left: 18px;
  background: var(--primary);
}

/* Modal X Close */
.cookie-modal .close-modal {
  position: absolute;
  top: 11px; right: 17px;
  background: none;
  border: none;
  color: var(--vintage-red);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal .close-modal:hover { color: var(--accent); }


/*--------------------------
Responsive/Mobile First Rules
----------------------------*/
@media (max-width: 980px) {
  .container {
    max-width: 96vw;
    padding: 0 10px;
  }
  header .container {
    padding: 14px 10px 8px 10px;
  }
  .section, .thank-you {
    padding: 28px 8px;
  }
  .footer-info img {
    max-height: 34px;
  }
}
@media (max-width: 768px) {
  .section, .thank-you {
    padding: 19px 4vw;
  }
  .footer-info {
    gap: 8px; padding-bottom: 14px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .feature-grid, .principle-list, .team-grid, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card, .featured-story, .brand-story, .team-member {
    padding-left: 14px;
    padding-right: 14px;
  }
  .hero {
    padding: 24px 0 16px 0;
  }
  .footer-nav {
    gap: 10px;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.08rem; }
  .cta-button { font-size: 1.05rem; padding: 8px 14px; }
  .testimonial-card, .featured-story, .brand-story, .team-member {
    padding: 11px 7px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    font-size: 0.98rem;
    padding: 9px 7px 7px 7px;
  }
}

/*--- Micro-interactions, Transitions, Effects ---*/
a, .cta-button, button {
  transition: background .17s, color .13s, box-shadow .12s, transform .12s;
}
ul li, .card, .testimonial-card, .team-member {
  transition: box-shadow .17s;
}
footer a:active, .main-nav a:active, .cta-button:active, .mobile-nav a:active {
  transform: scale(0.97);
}

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

/*--- Hide visually, display for accessibility ---*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/*--- Vintage Patterns and Decorative Elements ---*/
.section {
  background-image: repeating-linear-gradient(135deg,#FFEEC6 0px,#FFF7EF 34px,#FFEEC6 68px);
  background-size: 160px 120px;
  background-blend-mode: lighten;
}
.hero {
  background-image: repeating-linear-gradient(100deg,#FEDC88 0px,#FFEBB9 34px,#FEDC88 68px);
  background-size: 180px 180px;
  background-blend-mode: lighten;
}

/*-----------------------------
END BlazeSpire Vintage Retro CSS
-----------------------------*/
