/* ===== CSS RESET & BASE ===== */
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: #FFF8F0;
  color: #2B312E;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #2B312E;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}

/* ===== SOFT PASTEL PALETTE ===== */
:root {
  --brand-primary: #2B312E;
  --brand-secondary: #D93434;
  --brand-bg: #FFF8F0;
  --brand-accent: #E6ECF6;
  --pastel-blue: #D7E6FF;
  --pastel-pink: #FFE3ED;
  --pastel-yellow: #FFF4C9;
  --pastel-green: #E5FBE5;
  --pastel-lavender: #F1EAFF;
  --card-bg: #FFFFFF;
  --shadow: 0 2px 20px 0 rgba(43, 49, 46, 0.04), 0 1.5px 6px 0 rgba(190, 160, 210, 0.07);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  color: var(--brand-primary);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-weight: 600;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  font-weight: 500;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 500;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li {
  font-size: 1rem;
  color: #453842;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
  margin-bottom: 14px;
}
strong { font-weight: 700; }

/* Utility font classes (e.g. for price, tag) */
.price {
  font-weight: bold;
  color: var(--brand-secondary);
}

/* ====== CONTAINER & LAYOUT ====== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  /* Subtle pastel edges on alternating */
  position: relative;
}

@media (max-width: 900px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    padding: 28px 8px;
  }
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: linear-gradient(90deg, #FFE3ED 0%, #FFF4C9 100%);
  padding: 0;
  border-bottom: 1.5px solid #efe7de;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 64px;
  gap: 16px;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: 'Lora', serif;
  font-size: 1.06rem;
  font-weight: 500;
  color: var(--brand-primary);
  padding: 8px 14px;
  border-radius: 18px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: var(--pastel-yellow);
  color: #A12358;
}
header img {
  height: 40px; max-height: 48px;
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: var(--brand-primary);
  cursor: pointer;
  display: none;
  margin-left: auto;
  padding: 4px 10px;
  border-radius: 12px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--pastel-lavender);
}

@media (max-width: 900px) {
  header nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(255, 248, 240, 0.98);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transition: transform 0.4s cubic-bezier(.79,.24,.37,1.33), opacity 0.35s;
  transform: translateX(100vw);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--brand-secondary);
  padding: 18px 20px 10px 0;
  cursor: pointer;
  margin-right: 10px;
  margin-top: 12px;
  transition: color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #B02E2E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 30px 24px 24px 36px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  color: var(--brand-primary);
  padding: 10px 6px;
  border-radius: 9px;
  font-weight: 500;
  transition: background 0.18s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-pink);
  color: var(--brand-secondary);
}

@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/* ===== HERO STYLES ===== */
.hero {
  background: linear-gradient(90deg, #D7E6FF 0%, #FFF4C9 100%);
  border-radius: 0 0 40px 40px;
  margin-bottom: 40px;
  padding: 56px 0 44px 0;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: unset;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 7px rgba(209, 222, 245, 0.28);
}
.hero p {
  font-size: 1.35rem;
  color: #4B4351;
  margin-bottom: 18px;
}
@media (max-width: 600px) {
  .hero { padding: 30px 0 30px 0; }
  .hero h1 { font-size: 2.1rem; }
  .hero p { font-size: 1.07rem; }
}

/* ===== BUTTONS & CTA ===== */
.cta-btn, button, .filter-bar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pastel-pink);
  color: var(--brand-primary);
  border: none;
  padding: 12px 28px;
  min-width: 135px;
  min-height: 42px;
  font-family: 'Lora', serif;
  font-size: 1.09rem;
  border-radius: 23px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1.5px 8px 0 rgba(238, 193, 204, 0.08);
  margin-top: 8px;
  gap: 6px;
  transition: background 0.21s, color 0.17s, box-shadow 0.23s, transform 0.13s;
}
.cta-btn.primary, .filter-bar button:focus, .filter-bar button.active {
  background: linear-gradient(90deg, #FFF4C9 40%, #FFE3ED 100%);
  color: var(--brand-primary);
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: var(--pastel-yellow);
  color: var(--brand-secondary);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 2.5px 18px 0 rgba(189, 157, 204, 0.13);
}
.cta-btn:active {
  background: var(--pastel-blue);
}
.filter-bar button:hover, .filter-bar button:focus {
  background: var(--pastel-green);
  color: var(--brand-secondary);
}

/* ===== FILTER BARS & TAGS ===== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 23px 0 14px 0;
  font-size: 1.02rem;
}
.filter-bar span {
  font-family: 'Lora', serif;
  font-weight: 600;
  color: var(--brand-primary);
  margin-right: 4px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.tag-list span {
  background: var(--pastel-lavender);
  color: #7A6B8C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.95rem;
  border-radius: 14px;
  padding: 5px 16px;
  font-weight: 500;
}

/* ===== SEARCH BAR ===== */
.search-bar {
  padding: 12px 26px;
  border-radius: 18px;
  font-size: 1.07rem;
  border: 1.8px solid #ececec;
  background: #fff;
  margin-top: 8px;
  width: 100%;
  max-width: 420px;
  transition: border 0.19s, box-shadow 0.13s;
  box-shadow: 0 1.5px 8px 0 rgba(101, 104, 137, 0.06);
}
.search-bar:focus {
  outline: none;
  border: 1.8px solid var(--pastel-blue);
  background: var(--pastel-blue);
}

/* ===== LAYOUTS & FLEXS ===== */
/* Card pattern for overview/service/coll. */
.service-grid, .category-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-card, .card {
  background: var(--card-bg);
  border-radius: 24px;
  box-shadow: var(--shadow);
  flex: 1 1 250px;
  padding: 32px 22px 22px 22px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.17s, transform 0.18s;
}
.service-card:hover, .card:hover, .service-card:focus {
  box-shadow: 0 7px 24px 2px rgba(255, 186, 207, 0.25);
  transform: translateY(-2px) scale(1.012);
}

@media (max-width: 900px) {
  .service-grid, .category-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}

.section .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;
  margin-bottom: 18px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 22px 22px 18px 22px;
  background: var(--pastel-lavender);
  box-shadow: var(--shadow);
  border-radius: 25px;
  min-width: 240px;
  max-width: 372px;
  margin-bottom: 20px;
  color: #2B312E;
  font-family: 'Lora', serif;
}
.testimonial-card p {
  font-size: 1.06rem;
  color: #2B312E;
  text-align: center;
}
.testimonial-card .testimonial-author {
  margin-top: 4px;
  font-size: 1rem;
  color: #8750a6;
  font-family: 'Lora', serif;
}
.testimonial-card .stars {
  color: #FFD167;
  font-size: 1.21rem;
  margin-bottom: -7px;
  letter-spacing: 0.09em;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(90deg, #FFE3ED 0%, #FFF4C9 100%);
  padding: 0 0 0 0;
  border-top: 1.5px solid #efe7de;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 46px;
  justify-content: space-between;
  padding: 26px 0 26px 0;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: #835069;
  padding: 6px 10px;
  border-radius: 11px;
  transition: background 0.16s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--pastel-blue);
  color: var(--brand-primary);
}
.contact-info {
  font-size: 0.98rem;
  color: #3B3527;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 10px;
}
.contact-info a {
  color: var(--brand-secondary);
  text-decoration: underline dotted;
  font-weight: 500;
}

@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ===== ADDRESS/INFO BLOCKS (Kontakt/u.ä.) ===== */
.address-block, .email-info, .hours {
  background: var(--pastel-green);
  padding: 16px 22px;
  border-radius: 16px;
  margin-bottom: 18px;
  font-size: 1.03rem;
  box-shadow: 0 1px 6px 1px #96e79f17;
}
.address-block h2, .email-info h2, .hours h2 {
  font-size: 1.11rem;
  margin-bottom: 4px;
}

/* ===== QUALITY PROMISE & INFO CARDS ===== */
.quality-promise, .mission-statement, .team-intro {
  background: var(--pastel-yellow);
  padding: 19px 20px;
  border-radius: 20px;
  box-shadow: 0 1px 6px 0 rgba(251, 229, 199, 0.08);
  margin-bottom: 16px;
}

/* ===== SPECIAL BLOCKS (MAP, HIGHLIGHTS, FACTS) ===== */
.region-map {
  background: var(--pastel-blue);
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 18px;
  font-size: 1rem;
}
.recipe-highlights {
  background: var(--pastel-pink);
  border-radius: 17px;
  padding: 15px 18px;
  margin-bottom: 18px;
  font-size: 1rem;
}
.folk_recipe_facts {
  background: var(--pastel-lavender);
  border-radius: 17px;
  padding: 15px 18px;
  font-size: 1rem;
  margin-bottom: 16px;
}

/* ===== THANK YOU PAGE BLOCKS ===== */
.thank-you-message {
  background: var(--pastel-green);
  border-radius: 20px;
  padding: 21px 18px;
  margin-bottom: 14px;
  font-size: 1.11rem;
  color: #2B312E;
  font-family: 'Lora', serif;
}
.next-steps {
  background: var(--pastel-yellow);
  border-radius: 17px;
  padding: 18px 15px;
  margin-bottom: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.18rem; }
  .section { padding: 18px 5px; margin-bottom: 34px; }
  .service-card, .card { min-width: 0; padding: 16px 11px; }
  .testimonial-card { min-width: 0; max-width: 100%; padding: 16px 9px; }
}


/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 9999;
  background: linear-gradient(90deg, #FFF4C9 70%, #FFE3ED 100%);
  color: #2B312E;
  padding: 20px 12px 24px 12px;
  box-shadow: 0 -3px 25px 0 rgba(210,175,200,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.3s, opacity 0.29s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  border-radius: 17px;
  padding: 10px 21px;
  font-size: 1.06rem;
  font-family: 'Lora', serif;
  background: var(--pastel-blue);
  color: var(--brand-primary);
  font-weight: 600;
  transition: background 0.17s, color 0.14s, box-shadow 0.17s;
  cursor: pointer;
  margin-top: 6px;
}
.cookie-btn.accept {
  background: var(--pastel-green);
  color: var(--brand-secondary);
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #baf89e;
}
.cookie-btn.reject {
  background: var(--pastel-pink);
  color: #AF3847;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ffd3d9;
}
.cookie-btn.settings {
  background: var(--pastel-lavender);
  color: #7A6B8C;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ded3fc;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .cookie-banner .cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ===== COOKIE SETTINGS MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(210, 180, 230, 0.22);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  max-width: 440px;
  width: 97vw;
  padding: 34px 22px 28px 22px;
  box-shadow: 0 11px 42px 7px rgba(220,180,210,0.19);
  color: #2B312E;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  z-index: 10001;
  animation: fadeInUpModal 0.35s cubic-bezier(.49,.48,.47,1.08);
}
@keyframes fadeInUpModal {
  from { transform: translateY(48px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Lora', serif;
  font-size: 1.26rem;
  margin-bottom: 8px;
  color: var(--brand-primary);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: var(--pastel-blue);
  border-radius: 14px;
  box-shadow: 0 1px 4px 0 #b3d9ff33;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: #D7FFE3;
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  left: 4px; top: 3.1px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 100%;
  box-shadow: 0 2px 7px 0 #d6e6fb33;
  transition: left 0.19s, background 0.22s;
}
.cookie-toggle:checked::after {
  left: 18px;
  background: #BAF89E;
}
.cookie-category .mandatory {
  font-size: 0.95rem;
  color: var(--brand-secondary);
  font-weight: 600;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #ad8fd8;
  font-size: 1.95rem;
  position: absolute;
  top: 14px;
  right: 16px;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #8a65ba;
}

/* ===== MICRO-INTERACTIONS ===== */
.card, .service-card, .testimonial-card {
  transition: box-shadow 0.16s, transform 0.18s;
}
.card:hover, .service-card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 30px 4px rgba(255, 207, 225, 0.16);
  transform: translateY(-2px) scale(1.011);
}
.cta-btn, button, .filter-bar button, .cookie-btn {
  transition: background 0.21s, color 0.19s, box-shadow 0.23s, transform 0.12s;
}
.cta-btn:active, .cookie-btn:active { transform: scale(0.97); }
.filter-bar button:active { transform: scale(0.96); }

/* ===== ACCESSIBILITY ===== */
:focus {
  outline: 2px dashed #B996DD;
  outline-offset: 2px;
}

/* ===== MISC ==== */
div[role='dialog'], div[aria-modal='true'] {
  z-index: 10150 !important;
}
::-webkit-scrollbar {
  width: 8px;
  background: #FFF8F0;
}
::-webkit-scrollbar-thumb {
  background: #e2dbfb;
  border-radius: 4px;
}

/* ===== Print ===== */
@media print {
  header, .mobile-menu, footer, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  main, .container { box-shadow: none !important; background: #fff; max-width: initial; }
}
section {
  padding: 20px 0;
}