/* --- 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F4ED;
  color: #184C32;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  padding-left: 1.5em;
}
a {
  color: #006d71;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFD372;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}

/* --- BRAND COLORS AND FONTS --- */
:root {
  --primary: #184C32;
  --secondary: #FFD372;
  --accent: #F5F4ED;
  --electric-green: #16E878;
  --electric-pink: #FF4E9B;
  --electric-orange: #FF8C32;
  --neutral-900: #161722;
  --neutral-100: #F5F4ED;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* --- LAYOUT CONTAINER --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* --- HEADER --- */
header {
  width: 100%;
  background: var(--primary);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 20px 0 rgba(30,80,80,.09);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  min-height: 60px;
}
header img {
  height: 48px;
  width: auto;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  font-size: 1.08rem;
  transition: color 0.22s;
  text-transform: uppercase;
}
header nav a:hover, header nav a.active {
  color: var(--secondary);
}
header .cta.primary {
  margin-left: 28px;
  display: inline-block;
  padding: 12px 28px;
  font-size: 1.11rem;
  font-weight: 700;
  border-radius: 30px;
  background: linear-gradient(95deg, var(--secondary), var(--electric-green) 80%);
  color: var(--primary);
  box-shadow: 0 4px 24px 0 rgba(255,211,114,0.09);
  letter-spacing: 0.04em;
  transition: background 0.25s, color 0.15s, box-shadow 0.20s;
  border: none;
}
header .cta.primary:hover, header .cta.primary:focus {
  background: linear-gradient(90deg, var(--electric-pink), var(--electric-orange));
  color: #fff;
  box-shadow: 0 6px 28px 0 rgba(255,78,155,0.13);
  outline: none;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: transparent;
  color: var(--secondary);
  margin-left: 18px;
  z-index: 35;
  border-radius: 6px;
  padding: 4px 10px;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: rgba(255, 211, 114, 0.23);
  color: var(--electric-pink);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24, 76, 50, 0.95);
  color: #fff;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.77,.2,.42,1) 0s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 38px;
  overscroll-behavior: contain;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 5px 60px 0 rgba(24, 76, 50, 0.25);
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: none;
  color: var(--secondary);
  align-self: flex-end;
  margin-right: 28px;
  margin-bottom: 32px;
  transition: color 0.18s;
  border: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: var(--electric-pink); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding-left: 44px;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 2px;
  border-radius: 8px;
  transition: color 0.2s, background 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

@media (max-width: 1000px) {
  header .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  header nav {
    gap: 16px;
  }
}
@media (max-width: 820px) {
  header nav, header .cta.primary { display: none !important; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width:821px) {
  .mobile-menu { display: none !important; }
}

/* --- MAIN / SECTION SPACING --- */
main {
  padding-top: 36px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  section { padding: 30px 8px; margin-bottom: 36px; }
  main { padding-top: 16px; }
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.16;
}
h1 { font-size: 2.8rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.45rem; margin-bottom: 10px; }
h4 { font-size: 1.2rem; margin-bottom: 8px; }
h5, h6 { font-size: 1rem; }
p, ul, ol, blockquote, .subheadline {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 18px;
  line-height: 1.65;
  font-weight: 400;
}
.subheadline {
  font-size: 1.3rem;
  color: var(--electric-pink);
  font-weight: 600;
  margin-bottom: 28px;
}
strong { font-weight: bold; }
blockquote {
  font-family: var(--font-display);
  border-left: 6px solid var(--electric-pink);
  padding-left: 18px;
  color: var(--neutral-900);
  font-size: 1.14rem;
  margin-bottom: 12px;
  background: #FFF6F7;
}
hr { border: none; height: 2px; width: 40px; background: var(--electric-pink); margin: 32px 0; }

@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .subheadline { font-size: 1.11rem; }
}

/* --- BUTTONS, CTAS, INTERACTION --- */
.cta, .feature button, .content-wrapper a.cta, .content-wrapper button, .filter-options button {
  display: inline-block;
  border-radius: 30px;
  background: var(--electric-green);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.08rem;
  line-height: 1.1;
  padding: 11px 26px;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(22, 232, 120, 0.09);
  margin: 8px 0 0 0;
  cursor: pointer;
  transition: background 0.20s, color 0.14s, transform 0.13s, box-shadow 0.18s;
}
.cta.primary, .filter-options button.selected {
  background: linear-gradient(92deg, var(--electric-orange), var(--electric-pink) 70%);
  color: #fff;
  box-shadow: 0 6px 32px -3px rgba(255,78,155,0.16);
}
.cta.primary:hover, .cta.primary:focus, .filter-options button.selected:hover, .filter-options button.selected:focus {
  background: linear-gradient(91deg, var(--secondary), var(--electric-green));
  color: var(--primary);
  transform: scale(1.03);
  box-shadow: 0 6px 32px 0 rgba(255,211,114,0.19);
}
.cta:hover, .filter-options button:hover, .filter-options button:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.04);
  box-shadow: 0 8px 36px -4px rgba(255,211,114,0.13);
  outline: none;
}
.cta:active, .filter-options button:active {
  transform: scale(0.97);
  background:var(--electric-orange);
  color: #fff;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 16px 0 26px 0;
}
.filter-options button {
  font-size: 1rem;
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--electric-orange);
  box-shadow: none;
  padding: 8px 20px;
  transition: background 0.16s, color 0.16s, border 0.16s, box-shadow 0.16s;
}
.filter-options button.selected, .filter-options button.active {
  background: var(--electric-pink);
  color: #fff;
  border-color: var(--electric-pink);
}

/* --- FLEX SPACING & ALIGNMENT PATTERNS --- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }

/* --- PAGE-SPECIFIC STRUCTURES --- */
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 820px) {
  .content-wrapper { flex-direction: column; gap: 20px; }
}

.feature-grid, .category-grid, .value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  width: 100%;
}
.feature, .category, .value {
  flex: 1 1 210px;
  min-width: 200px;
  max-width: 300px;
  background: #fff;
  border-radius: 24px;
  padding: 28px 14px;
  box-shadow: 0 2px 16px 0 rgba(24,76,50,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  transition: transform 0.14s, box-shadow 0.18s;
  border: 2px solid transparent;
}
.feature:hover, .category:hover, .value:hover {
  transform: scale(1.03) translateY(-2px) rotate(-1deg);
  box-shadow: 0 8px 32px -7px var(--electric-pink);
  border-color: var(--secondary);
}
.feature img, .category img, .value img {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: var(--accent);
  box-shadow: 0 1px 8px 0 rgba(255,140,50,0.07);
  padding: 7px;
}
.recipe-list-preview ul, .service-highlights ul, .benefits-list, .recipe-feed {
  list-style: disc inside;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-highlights {
  flex: 1 1 370px;
  background: #fff;
  border-radius: 18px;
  padding: 24px 18px;
  box-shadow: 0 1px 12px 0 rgba(24,76,50,0.065);
}
.short-contact-info,
.contact-info, .contact-short {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(24,76,50,0.07);
  padding: 18px 18px;
  font-size: 1rem;
  min-width: 240px;
  color: var(--primary);
  margin-bottom: 12px;
}
.info-note {
  flex: 1 1 320px;
  background: var(--accent);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 22px;
  color: var(--primary);
}

/* --- SERVICES (Dienstleistungen) --- */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
}
.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 22px;
  padding: 30px 16px 24px 16px;
  box-shadow: 0 2px 16px 0 rgba(255,140,50,0.04);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  border: 2px solid transparent;
  transition: box-shadow 0.15s, border-color 0.14s, transform 0.12s;
}
.service-card:hover {
  border-color: var(--electric-green);
  box-shadow: 0 10px 44px -7px var(--electric-green);
  transform: scale(1.025);
}
.service-card .price {
  color: var(--electric-orange);
  font-weight: bold;
  font-size: 1.08rem;
  margin-top: 9px;
}

/* --- KOCHWORKSHOPS-LIST --- */
.workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.format-info, .pricing-info {
  background: #fffbe9;
  border-radius: 13px;
  padding: 18px 14px;
  box-shadow: 0 1px 9px 0 rgba(255,211,114,0.10);
  font-size: 1rem;
  margin-bottom: 18px;
}
.pricing-info strong {
  color: var(--electric-orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07rem;
}
.pricing-info span {
  color: var(--primary);
  font-size: 0.97rem;
}

/* --- TESTIMONIALS --- */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.testimonial-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 22px 0 rgba(255,78,155,0.07), 0 0.5px 2px 0 rgba(24,76,50,0.04);
  padding: 22px 18px 18px 22px;
  min-width: 240px;
  max-width: 370px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  position: relative;
  color: var(--primary);
  transition: box-shadow 0.14s, transform 0.12s;
  border: 2px solid transparent;
}
.testimonial-card:hover {
  border-color: var(--electric-pink);
  box-shadow: 0 10px 36px -7px var(--electric-pink);
  transform: scale(1.02);
}
.testimonial-card blockquote {
  border: none;
  background: transparent;
  color: var(--neutral-900);
  font-size: 1.18rem;
  margin: 0;
}
.testimonial-cite {
  color: var(--electric-green);
  font-size: 0.99rem;
  font-weight: bold;
  font-family: var(--font-display);
}

/* --- PAGINATION --- */
.pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-size: 1rem;
}
.pagination a {
  display: inline-block;
  padding: 7px 14px;
  background: var(--electric-green);
  color: var(--primary);
  font-weight: 600;
  border-radius: 18px;
  text-decoration: none;
  transition: background 0.16s, color 0.13s;
}
.pagination a:hover, .pagination a:focus {
  background: var(--electric-pink);
  color: #fff;
}

/* --- FORM & SEARCH BAR --- */
.search-bar {
  margin: 14px 0 5px 0;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 480px;
}
.search-bar input[type="search"] {
  width: 100%;
  padding: 11px 19px;
  border-radius: 22px;
  border: 2px solid var(--electric-green);
  font-size: 1.06rem;
  font-family: var(--font-body);
  color: var(--primary);
  background: #fff;
  box-shadow: 0 1px 8px 0 rgba(22,232,120,0.045);
  margin-right: 6px;
  outline: none;
  transition: border 0.16s;
}
.search-bar input[type="search"]:focus {
  border: 2px solid var(--electric-pink);
}

/* --- FOOTER --- */
footer {
  width: 100%;
  background: var(--primary);
  color: #fff;
  margin-top: 70px;
  padding: 24px 0 6px 0;
  font-size: 1.04rem;
  flex-shrink: 0;
}
footer .container {
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
footer nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.05rem;
  border-radius: 7px;
  padding: 2px 10px;
  transition: color 0.16s, background 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--electric-orange);
  background: #fff;
}
footer p {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.97rem;
  margin-top: 8px;
  opacity: 0.94;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1120px) {
  .container { max-width: 98vw; }
  .feature, .category, .value {
    min-width: 46vw;
  }
  .services-list, .feature-grid, .category-grid, .value-grid {
    gap: 20px;
  }
}
@media (max-width: 800px) {
  .service-card, .feature, .category, .value {
    min-width: 95vw;
    max-width: 100vw;
  }
  .testimonials, .services-list, .feature-grid, .category-grid, .value-grid, .workshop-list, .card-container {
    flex-direction: column;
    gap: 20px;
  }
}

/* --- TEXT-IMAGE FLEX STACKING (for future) --- */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; align-items: flex-start; }
}

/* --- COOKIE CONSENT BANNER & POPUP --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left:0; right:0;
  width: 100vw;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(94deg,var(--primary) 85%, var(--electric-orange) 100%);
  color: #fff;
  font-size: 1.05rem;
  font-family: var(--font-body);
  padding: 18px 14px 18px 24px;
  box-shadow: 0 -6px 48px 0 rgba(24,76,50,0.13);
  gap: 16px;
  flex-wrap: wrap;
  min-height: 75px;
  animation: cookieBannerIn 0.7s cubic-bezier(.6,.13,.37,1) forwards;
}
@keyframes cookieBannerIn {
  from {transform: translateY(100%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  flex: 1 1 60vw;
  margin-right: 14px;
  color: #fff;
  margin-bottom: 0;
}
.cookie-banner .cookie-btn {
  background: var(--electric-green);
  color: var(--primary);
  border: none;
  border-radius: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-right: 12px;
  padding: 10px 20px;
  margin-bottom: 0;
  box-shadow: 0 1px 12px 0 rgba(22,232,120,0.12);
  transition: background 0.18s, color 0.15s, box-shadow 0.18s;
}
.cookie-banner .cookie-btn.settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .cookie-btn.reject {
  background: var(--electric-pink);
  color: #fff;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--primary);
  color: var(--secondary);
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  z-index: 3100;
  left: 0; right:0; top:0; bottom:0;
  background: rgba(22,76,50,0.91);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: modalIn 0.45s cubic-bezier(.65,.13,.42,1) forwards;
}
@keyframes modalIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  max-width: 95vw;
  width: 420px;
  padding: 42px 28px 30px 28px;
  box-shadow: 0 12px 48px 0 rgba(24,76,50,0.19);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.cookie-modal-content h2 {
  color: var(--primary);
  font-size: 1.35rem;
  font-family: var(--font-display);
  margin-bottom: 2px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-category.disabled {
  opacity: 0.66;
}
.cookie-modal-content label {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary);
  font-size: 1.02rem;
  cursor: pointer;
}
.cookie-switch {
  width: 38px;
  height: 22px;
  background: var(--accent);
  border-radius: 16px;
  position: relative;
  margin-left: 4px;
  transition: background 0.16s;
}
.cookie-switch input {
  display: none;
}
.cookie-slider {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: var(--electric-green);
  border-radius: 50%;
  transition: left 0.18s, background 0.16s;
}
.cookie-switch input:checked + .cookie-slider {
  left: 19px;
  background: var(--electric-pink);
}
.cookie-modal-content .cookie-btn {
  margin-top: 18px;
  width: 100%;
  font-size: 1.1rem;
  background: var(--electric-orange);
  color: #fff;
}
.cookie-modal-content .cookie-btn:hover, .cookie-modal-content .cookie-btn:focus {
  background: var(--primary);
  color: var(--secondary);
}
.cookie-modal-close {
  position: absolute;
  top: 22px; right: 28px;
  background: none;
  color: var(--electric-orange);
  font-size: 2rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  z-index: 9999;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: var(--electric-pink); }

@media (max-width: 500px) {
  .cookie-modal-content { padding: 18px 8px 10px 8px; width: 97vw; }
}

/* --- UTILITIES & MICRO-INTERACTIONS --- */
.fade-in {
  animation: fadeIn 0.44s cubic-bezier(.53,.08,.26,.97) 0s 1 forwards;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.shadow-1 {
  box-shadow: 0 2px 20px 0 rgba(24,76,50,0.05);
}
.text-center { text-align: center; }
.rounded-16 { border-radius: 16px !important; }

/* --- PRINT & SCROLL --- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}
::-webkit-scrollbar {
  width: 10px; height: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #fff;
}

/* --- SELECTION COLOR --- */
::selection {
  background: var(--electric-pink);
  color: #fff;
}

/* --- ACCESSIBILITY FOCUS VISIBLE --- */
:focus-visible {
  outline: 3px solid var(--electric-green);
  outline-offset: 3px;
}

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