/* --------------------------
   CSS RESET & BASE STYLES
-----------------------------*/
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, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #223A29;
  min-height: 100vh;
  font-size: 16px;
}

img {
  max-width: 100%;
  display: block;
  border: 0;
}

a {
  color: #C6470A;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E86A33;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  padding-left: 20px;
}

*, *::before, *::after {
  box-sizing: inherit;
}


/* -----------------------------
   TYPOGRAPHY
------------------------------ */
h1 {
  font-family: 'Nunito', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.75rem;
  letter-spacing: -1px;
  color: #223A29;
  margin-bottom: 16px;
  line-height: 1.13;
}
h2 {
  font-family: 'Nunito', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: bold;
  font-size: 2rem;
  color: #223A29;
  margin-bottom: 12px;
  line-height: 1.2;
}
h3 {
  font-family: 'Nunito', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.25rem;
  color: #223A29;
  margin-bottom: 8px;
  line-height: 1.25;
}
h4, h5, h6 {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  color: #223A29;
}
p {
  font-size: 1rem;
  color: #223A29;
  margin-bottom: 16px;
}

strong, b {
  font-weight: 900;
  color: #223A29;
}

.cta-btn, .cta-banner a.cta-btn {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  background: #C6470A;
  color: #fff;
  border-radius: 36px;
  padding: 16px 32px;
  margin-top: 12px;
  display: inline-block;
  box-shadow: 0 3px 16px rgba(34,58,41,0.08), 0 1.5px 6px rgba(198,71,10,0.12);
  border: 2px solid #C6470A;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.15s;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #E86A33;
  color: #fff;
  border-color: #E86A33;
  transform: translateY(-2px) scale(1.04);
}

/* -----------------------------
   CONTAINERS & LAYOUT
------------------------------ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px 2px rgba(34,58,41,0.07);
  padding: 32px 24px;
  min-width: 260px;
  flex: 1 1 320px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 9px 30px 3px rgba(198,71,10,0.14);
  transform: translateY(-4px) scale(1.02);
}

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

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px 2px rgba(34,58,41,0.08);
  padding: 20px 28px;
  flex: 1 1 310px;
  min-width: 260px;
  max-width: 400px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.14s;
  position: relative;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 9px 34px 4px rgba(198,71,10,0.12);
  transform: translateY(-2px) scale(1.01);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.testimonial-avatar img {
  width: 50px;
  border-radius: 50%;
  border: 2px solid #E86A33;
}

.testimonial-author {
  font-size: 1rem;
  font-weight: bold;
  color: #223A29;
  display: flex;
  gap: 8px;
  align-items: center;
}
.stars {
  color: #E86A33;
  font-size: 1.1em;
}

.summary-box {
  background: #F9F8F4;
  border-left: 5px solid #C6470A;
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 28px;
}

.origin-intro {
  background: #E8D89E;
  border-radius: 10px;
  padding: 18px 24px;
  font-size: 1.08em;
  color: #223A29;
  margin-top: 20px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px 2px rgba(34,58,41,0.07);
  padding: 28px 22px;
  min-width: 220px;
  flex: 1 1 260px;
  transition: box-shadow 0.23s, transform 0.15s;
  margin-bottom: 20px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 9px 25px 3px rgba(198,71,10,0.10);
  transform: translateY(-4px) scale(1.03);
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
}

.cta-banner {
  background: #E8D89E;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 3px 18px 2px rgba(34,58,41,0.08);
  margin-bottom: 40px;
}
.cta-banner h2 {
  color: #223A29;
  margin-bottom: 10px;
}
.cta-banner p {
  color: #223A29;
}

.text-section {
  margin-bottom: 36px;
}
.contact-info {
  margin-top: 14px;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #223A29;
}
.map-embed {
  margin-top: 16px;
}

.filters {
  margin-top: 18px;
  font-size: 1rem;
}

/* -----------------------------
   HERO SECTION
------------------------------ */
.hero {
  background: #223A29;
  color: #fff;
  padding: 72px 0 68px 0;
  position: relative;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 22px rgba(34,58,41,0.25);
}
.hero p {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.hero .cta-btn {
  background: #E86A33;
  border-color: #E86A33;
}
.hero .cta-btn:hover {
  background: #C6470A;
  border-color: #C6470A;
}

/* -----------------------------
   HEADER & NAVIGATION
------------------------------ */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(34,58,41,0.03);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 64px;
}
header img[alt="BlitzRezept"] {
  height: 48px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 0;
}
.main-nav a {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  border-radius: 16px;
  padding: 7px 16px;
  transition: background 0.16s, color 0.18s;
  color: #223A29;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #E8D89E;
  color: #C6470A;
}
.main-nav .cta-btn {
  margin-left: 16px;
  background: #C6470A;
  color: #fff;
  box-shadow: 0 2px 8px rgba(198,71,10,0.17);
  border-radius: 22px;
  font-size: 1.02rem;
  padding: 9px 26px;
}
.main-nav .cta-btn:hover {
  background: #E86A33;
  color: #fff;
}

/* Hamburger (Mobile) Menu Button */
.mobile-menu-toggle {
  display: none;
  background: #C6470A;
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2em;
  align-items: center;
  justify-content: center;
  border: none;
  margin-left: auto;
  cursor: pointer;
  z-index: 101;
  transition: background 0.17s, transform 0.13s;
}
.mobile-menu-toggle:active {
  background: #E86A33;
  transform: scale(1.1);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: 0 4px 50px rgba(34,58,41,0.17);
  z-index: 2000;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.27s;
  transform: translateX(-100vw);
  opacity: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.4em;
  color: #C6470A;
  padding: 18px 20px;
  margin: 0;
  align-self: flex-end;
  cursor: pointer;
  transition: background 0.16s, color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #E86A33;
  background: #F6E9D8;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  padding: 20px 34px 32px 34px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.21em;
  color: #223A29;
  padding: 16px 0;
  width: 100%;
  border-radius: 10px;
  transition: background 0.17s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E8D89E;
  color: #C6470A;
}
.mobile-nav a.cta-btn {
  background: #C6470A;
  color: #fff;
  padding: 16px 26px;
  border-radius: 22px;
  font-weight: 700;
}
.mobile-nav a.cta-btn:hover {
  background: #E86A33;
  color: #fff;
}

/* -----------------------------
   FOOTER
------------------------------ */
footer {
  background: #223A29;
  color: #fff;
  padding-top: 38px;
  padding-bottom: 24px;
  margin-top: 60px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  padding: 0 12px;
  justify-content: space-between;
}
.footer-brand img {
  width: 88px;
  margin-bottom: 12px;
  filter: brightness(100) invert(0);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  padding: 6px 8px;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #E86A33;
  color: #223A29;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
}
.footer-contact strong {
  color: #E8D89E;
  font-weight: 700;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer-social a img {
  width: 35px;
  height: 35px;
  filter: none;
  opacity: 0.95;
  transition: filter 0.18s, opacity 0.18s;
}
.footer-social a:hover img {
  filter: brightness(1.25) drop-shadow(0 2px 18px #C6470A44);
  opacity: 1;
}

/* -----------------------------
   COOKIE CONSENT BANNER
------------------------------ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff9f1;
  border-top: 6px solid #C6470A;
  box-shadow: 0 -2px 30px 0 rgba(34,58,41,0.13);
  z-index: 2500;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 24px;
  gap: 24px;
  flex-wrap: wrap;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), opacity 0.17s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100px);
  font-size: 1rem;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner-text {
  color: #223A29;
  font-size: 1rem;
  font-weight: 600;
  max-width: 540px;
  line-height: 1.5;
}
.cookie-banner-actions {
  display: flex;
  gap: 20px;
}
.cookie-btn {
  padding: 12px 26px;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  border-radius: 18px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, border 0.14s;
  box-shadow: 0 1px 8px rgba(198,71,10,0.10);
  border: 2px solid #C6470A;
  color: #fff;
  background: #C6470A;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #E86A33;
  border-color: #E86A33;
}
.cookie-settings-btn {
  background: #E8D89E;
  color: #223A29;
  border: 2px solid #E8D89E;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #C6470A;
  color: #fff;
  border-color: #C6470A;
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 2600;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,58,41,0.3);
  align-items: center;
  justify-content: center;
  transition: opacity 0.18s;
  opacity: 0;
}
.cookie-modal-overlay.visible {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 425px;
  width: 96vw;
  box-shadow: 0 10px 44px 0 rgba(198,71,10,0.14);
  padding: 36px 26px 26px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookie-modal-in 0.34s cubic-bezier(0.4,0,0.2,1);
}
@keyframes cookie-modal-in {
  from {transform: translateY(32px) scale(0.96); opacity: 0;}
  to {transform: translateY(0) scale(1); opacity: 1;}
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 17px;
  background: none;
  border: none;
  font-size: 2em;
  color: #C6470A;
  cursor: pointer;
  padding: 5px;
  border-radius: 10px;
  transition: background 0.14s, color 0.16s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #FFF0DA;
  color: #E86A33;
}
.cookie-modal-title {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1.38em;
  font-weight: 900;
  color: #223A29;
}
.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 16px 0 0 0;
  padding: 0;
}
.cookie-pref-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-pref-label {
  font-size: 1rem;
  font-weight: 700;
  color: #223A29;
}
.cookie-pref-toggle {
  margin-left: auto;
  margin-right: 6px;
}
input[type='checkbox'].cookie-toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #E8D89E;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
  border: 2px solid #E8D89E;
}
input[type='checkbox'].cookie-toggle:checked {
  background: #C6470A;
}
input[type='checkbox'].cookie-toggle:disabled {
  background: #F2F2F2;
  border-color: #F2F2F2;
  cursor: not-allowed;
}
input[type='checkbox'].cookie-toggle::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.20s;
}
input[type='checkbox'].cookie-toggle:checked::before {
  transform: translateX(18px);
}
input[type='checkbox'].cookie-toggle:disabled::before {
  background: #DDD;
}
.cookie-pref-essential .cookie-pref-toggle input {
  background: #E8D89E !important;
  border-color: #E8D89E !important;
}
.cookie-pref-essential .cookie-pref-toggle input::before {
  background: #fff!important;
}

/* -----------------------------
   MEDIA QUERIES (Responsive)
------------------------------ */
@media (max-width: 1024px) {
  .container { max-width: 990px; }
  footer .content-wrapper { gap: 20px; }
  .features-grid, .testimonials-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container { max-width: 730px; }
  .features-grid, .testimonials-grid {
    gap: 14px;
  }
  .section { padding: 32px 10px; }
  .cta-banner { padding: 22px 10px; }
}
@media (max-width: 768px) {
  .container { max-width: 98vw; }
  header .container {
    flex-direction: row;
    gap: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero {
    padding: 52px 0 40px 0;
  }
  .hero .content-wrapper {
    gap: 18px;
  }
  .features-grid,
  .testimonials-grid {
    flex-direction: column;
    gap: 18px;
  }
  .section {
    margin-bottom: 40px;
    padding: 26px 4vw;
  }
  .cta-banner {
    padding: 18px 8px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    padding: 0 2vw;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.38rem; }
  .hero {
    padding: 24px 0 20px 0;
  }
  .section {
    padding: 16px 2vw;
    margin-bottom: 30px;
  }
  .feature-item, .testimonial-card, .card {
    padding: 18px 10px;
    min-width: 0;
  }
  .origin-intro {
    font-size: 0.96em;
    padding: 10px 7px;
  }
  .footer-contact p img, .contact-info p img {
    width: 22px!important;
    height: 22px!important;
  }
}
@media (max-width: 400px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 14px 3vw;
  }
}

/* -----------------------------
   UTILITY CLASSES
------------------------------ */
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.text-center { text-align: center !important; }
.w-100 { width: 100% !important; }
.mt-0 { margin-top: 0 !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.gap-12 { gap: 12px !important; }


/* -----------------------------
   ADDITIONAL MICRO-INTERACTIONS
------------------------------ */
.card, .feature-item, .testimonial-card {
  cursor: pointer;
}
.card:focus-within, .feature-item:focus-within, .testimonial-card:focus-within {
  outline: 3px solid #E8D89E;
  outline-offset: 2px;
}
input[type='text']:focus, input[type='email']:focus, textarea:focus {
  border: 2px solid #C6470A;
  border-radius: 7px;
  background: #FFF0DA;
}

/* -----------------------------
   PRINT STYLE RESET
------------------------------ */
@media print {
  header, nav, .mobile-menu, .hero, footer, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { color: #000; background: #fff; }
}
