/* --- 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, 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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  line-height: 1.6;
  background-color: #FFF8F2;
  color: #275202;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; border-radius: 16px; display: block; }
a { color: #275202; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #C26C1A; text-decoration: underline; }
ul, ol { margin-left: 1.2em; margin-bottom: 1.2em; }
strong { font-weight: 700; }
hr { border: 0; border-top: 1px solid #ffeed7; margin: 32px 0; }


/* --- TYPOGRAPHY --- */
h1, .h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #275202;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
h2, .h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #275202;
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #4B3C1D;
}
h4, .h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
p, .lead {
  margin-bottom: 16px;
  color: #3A3A3A;
}
.lead {
  font-size: 1.22rem;
  color: #74531C;
  font-weight: 500;
}


/* --- CONTAINER & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 32px;
  box-shadow: 0 4px 28px 0 rgba(187,113,7,0.06);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  background: #FFFDF9;
  padding: 28px 22px;
  border-radius: 24px;
  box-shadow: 0 2px 10px 0 rgba(230,170,79,0.11);
  position: relative;
  transition: box-shadow 0.25s, transform 0.18s;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 260px;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(184, 129, 39, 0.17);
  transform: translateY(-4px) scale(1.022);
}

.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;
  margin-bottom: 20px;
  background: #FFF7E8;
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 rgba(218,158,57,0.13);
  flex-direction: row;
  min-width: 200px;
  transition: box-shadow 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 26px 0 rgba(184, 129, 39, 0.15);
  background: #FFF3DE;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 14px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(247,198,115,0.11);
  margin-bottom: 20px;
}

.popular-recipe-snippet {
  background: #FAEAC8;
  border-radius: 18px;
  padding: 16px 22px;
  font-size: 1.08rem;
  color: #7D4500;
  margin-bottom: 20px;
  box-shadow: 0 1px 5px 0 rgba(211, 150, 43, 0.09);
}

ul.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 0;
  list-style-type: disc;
}
.benefits-list li {
  font-size: 1rem;
  color: #583A04;
  background: #FFEAC1;
  padding: 8px 18px;
  border-radius: 16px;
}

.pricing-overview {
  background: #FFF8E2;
  padding: 16px 22px;
  border-radius: 20px;
  margin-top: 18px;
  margin-bottom: 14px;
  font-size: 1.05rem;
}


/***** NAVIGATION & HEADER *****/
header {
  background: #F7C673;
  box-shadow: 0 2px 16px 0 rgba(231,181,66,0.09);
  padding: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 90px;
}
header img {
  height: 50px;
  border-radius: 15px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #275202;
  font-weight: 500;
  border-radius: 12px;
  padding: 8px 14px;
  transition: background 0.16s;
}
nav a:hover, nav a:focus {
  background: #FFE3A7;
  color: #A24D08;
}
.button-primary, .button-secondary {
  display: inline-block;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 28px;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 10px 0 rgba(184, 129, 39, 0.06);
  text-align: center;
  margin: 10px 0 0 0;
}
.button-primary {
  background: #275202;
  color: #FFF;
}
.button-primary:hover, .button-primary:focus {
  background: #82B344;
  color: #FFF9E1;
  box-shadow: 0 4px 18px 0 rgba(39,82,2,0.13);
  transform: scale(1.035);
}
.button-secondary {
  background: #F7C673;
  color: #413B0F;
  margin-top: 20px;
}
.button-secondary:hover, .button-secondary:focus {
  background: #FFF8E2;
  color: #275202;
  box-shadow: 0 2px 14px 0 rgba(213,154,46,0.11);
  transform: scale(1.03);
}


/***** MOBILE NAVIGATION *****/
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 20px;
  z-index: 1100;
  width: 54px;
  height: 54px;
  border: none;
  background: #F7C673;
  color: #275202;
  font-size: 2rem;
  border-radius: 50%;
  box-shadow: 0 2px 10px 0 rgba(199, 135, 34, 0.14);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFD897;
  color: #826720;
  box-shadow: 0 3px 18px 0 rgba(199, 135, 34, 0.15);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF8F2;
  transform: translateX(-100%);
  z-index: 1200;
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
  padding: 0;
  box-shadow: 0 1px 22px 0 rgba(233,183,81,0.21);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 22px 0 0 18px;
  padding: 10px 20px;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #70520D;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F7C673;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 40px 28px;
  width: 85vw;
}
.mobile-nav a {
  font-size: 1.25rem;
  padding: 14px 0 14px 12px;
  border-radius: 14px;
  color: #275202;
  background: none;
  margin-bottom: 4px;
  transition: background 0.14s, color 0.14s;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFF0D0;
  color: #AF5B0A;
}


/***** FOOTER *****/
footer {
  background: #F7C673;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  box-shadow: 0 0 8px 0 rgba(209,144,20,0.12);
  margin-top: 60px;
  padding: 38px 0 0 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo { flex: 1 1 130px; max-width: 160px; margin-bottom: 12px; }
.footer-logo img { height: 46px; }
footer nav {
  flex: 2 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer nav a {
  color: #70450A;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 3px;
  padding: 5px 4px 5px 2px;
  border-radius: 8px;
}
footer nav a:hover, footer nav a:focus {
  background: #FAEAC8;
}
.footer-contact {flex: 3 1 260px; color: #63440A; font-size: 0.97rem;}
.footer-contact img { display: inline-block; height: 15px; position: relative; top: 3px; margin-right: 5px; }
.footer-social {flex: 1 1 46px; display: flex; gap: 12px; margin-top: 6px;}
.footer-social img {height: 30px; cursor: pointer; border-radius: 50%; transition: box-shadow 0.16s;}
.footer-social img:hover { box-shadow: 0 2px 12px 0 rgba(223,171,51,0.16); }
.footer-mini {width: 100%; text-align: right; font-size: 0.9rem; color: #AB8634; margin: 18px 0 2px 0;}


/****** SEARCH & FILTERS (Rezepte) ******/
.search-filter {
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-filter input[type="text"] {
  border: none;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 1rem;
  background: #FFF7E9;
  box-shadow: 0 1px 5px 0 rgba(246,199,102,0.09);
  color: #543C0B;
  transition: box-shadow 0.14s;
}
.search-filter input[type="text"]:focus {
  outline: none;
  box-shadow: 0 2px 12px 0 rgba(234,177,53,0.13);
}
.recipe-categories, .cuisine-tags, .dietary-filters {
  background: #FFF3DE;
  border-radius: 20px;
  padding: 14px 18px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #7D4500;
}


/***** FAQ ACCORDION (Kontakt) *****/
.faq-accordion h3 {
  font-size: 1.08rem;
  margin: 14px 0 5px 0;
  color: #6C4D1B;
  cursor: pointer;
  position: relative;
  padding-left: 8px;
}
.faq-accordion p {
  font-size: 0.98rem;
  margin-bottom: 10px;
  background: #FBF0DD;
  border-radius: 10px;
  padding: 10px 14px;
  color: #593F1A;
  transition: background 0.16s;
}

.contact-info-highlight {
  background: #FFF3DE;
  border-radius: 16px;
  padding: 20px;
  color: #6F520C;
  font-weight: 500;
  font-size: 1.03rem;
  box-shadow: 0 2px 9px 0 rgba(223,180,74,0.08);
}
.contact-info-highlight img { height: 21px; margin-right: 7px; vertical-align: middle; }


/****** SPECIAL: ACCORDION CLOSE (for .faq-accordion h3:hover) ******/
.faq-accordion h3:hover {
  color: #B0721A;
}

/****** TEAM TEASER ******/
.team-teaser {
  background: #FFF7ED;
  border-radius: 16px;
  padding: 13px 16px;
  font-size: 1rem;
  color: #7F4403;
  margin-top: 16px;
}

/***** COOKIE CONSENT BANNER & MODAL *****/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #FFF7E9;
  color: #6C4D18;
  box-shadow: 0 -2px 22px 0 rgba(246,182,77,0.09);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1300;
  padding: 24px 16px;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 1.05rem;
  animation: bannerIn 0.42s cubic-bezier(.7,.1,.35,1);
}
@keyframes bannerIn { from { transform: translateY(120%);} to { transform: translateY(0); } }
.cookie-consent-banner .cookie-btn {
  border: none;
  border-radius: 16px;
  padding: 11px 20px;
  margin: 0 7px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  background: #F7C673;
  color: #275202;
  transition: background 0.13s, color 0.13s, box-shadow 0.12s;
}
.cookie-consent-banner .cookie-btn.accept {
  background: #275202;
  color: #FFF;
}
.cookie-consent-banner .cookie-btn.reject {
  background: #FFF3DE;
  color: #9B7A3D;
}
.cookie-consent-banner .cookie-btn.settings {
  background: #FFF7E9;
  color: #826720;
  border: 1px solid #F7C673;
}
.cookie-consent-banner .cookie-btn:hover, .cookie-consent-banner .cookie-btn:focus {
  box-shadow: 0 2px 12px 0 rgba(181,139,48,0.11);
  background: #FFF0D6;
}
.cookie-consent-banner .cookie-btn.accept:hover, .cookie-consent-banner .cookie-btn.accept:focus {
  background: #3C7D17;
  color: #FFF9E3;
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(41,31,17,0.32);
  z-index: 1350;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.cookie-modal-overlay.open { display: flex; }

.cookie-modal {
  background: #FFF7E9;
  border-radius: 30px;
  box-shadow: 0 8px 36px 0 rgba(233,183,81,0.26);
  max-width: 420px;
  width: 90vw;
  padding: 38px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalFadeIn 0.38s cubic-bezier(.6,.04,.37,1);
  position: relative;
}
@keyframes modalFadeIn { from { opacity: 0; transform: translateY(90px); } to { opacity: 1; transform: none; } }
.cookie-modal h2 {
  font-size: 1.33rem;
  font-family: 'Playfair Display', Georgia, serif;
  color: #275202;
  margin-bottom: 4px;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 18px;
  top: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #A09432;
  cursor: pointer;
  border-radius: 50%;
  padding: 7px 10px;
  transition: background 0.16s;
}
.cookie-modal .modal-close:hover {
  background: #F7C673;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #FFF;
  border-radius: 16px;
  padding: 13px 15px;
  margin-bottom: 6px;
  font-size: 1rem;
  color: #563712;
  box-shadow: 0 1px 8px 0 rgba(230,184,108,0.10);
}
.cookie-category input[type=checkbox] {
  accent-color: #F7C673;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.cookie-category.essential {
  opacity: 0.6;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions .cookie-btn {
  padding: 12px 24px;
}

/**** MICROINTERACTIONS ****/
.button-primary, .button-secondary, .cookie-btn {
  transition: background 0.18s, color 0.18s, transform 0.14s, box-shadow 0.13s;
}
.card, .testimonial-card, .feature-item {
  transition: box-shadow 0.22s, transform 0.11s, background 0.19s;
}
.card:active, .testimonial-card:active, .cookie-btn:active {
  transform: scale(0.98);
}

/**** RESPONSIVE DESIGN MOBILE FIRST ****/
@media (max-width: 1100px) {
  .container { max-width: 99vw; }
  header .container { flex-direction: column; gap: 18px; align-items: flex-start;}
  footer .container { flex-direction: column; gap: 20px; align-items: flex-start; }
  .footer-mini {text-align: left;}
}
@media (max-width: 900px) {
  .section { padding: 32px 10px; }
  h1, .h1 { font-size: 2.1rem; }
  h2, .h2 { font-size: 1.43rem; }
  .card { padding: 20px 10px; min-width: 180px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  header .container, .footer .container { min-height: unset; }
  nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .section {padding: 26px 2px; margin-bottom: 38px;}
  .content-wrapper, .content-grid {gap: 13px;}
  .card-container {gap: 13px;}
  .card {padding: 14px 8px;}
  .testimonial-card, .feature-item {padding: 12px 8px;}
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .footer-social img {height: 26px;}
}

@media (max-width: 600px) {
  .cookie-modal {padding: 18px 7px; }
  header img, .footer-logo img { height: 36px; }
  .footer-social img { height: 22px; }
  .testimonial-card, .feature-item {
    padding: 10px 4px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .card:hover, .feature-item:hover {
    box-shadow: 0 8px 23px 0 rgba(255,196,97,0.16);
    background: #FFF5DC;
    transform: translateY(-4px) scale(1.02);
  }
}


/***** UTILITIES *****/
.mt-0 { margin-top: 0 !important; } .mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 8px !important; } .mb-1 { margin-bottom: 8px !important; }
.mt-2 { margin-top: 16px !important; } .mb-2 { margin-bottom: 16px !important; }
.text-center { text-align: center !important; }
.rounded { border-radius: 18px !important; }
.shadow { box-shadow: 0 2px 12px 0 rgba(247,198,115,0.13) !important; }

/* --- END OF CSS --- */