/* Dusty Vista Rezepte - Vibrant Energetic CSS
   Style: Electric colors, bold, dynamic, energetic, mobile-first, flexbox-only
   Brand Colors: #243940 (primary), #8A5D38 (secondary), #F4EAD1 (accent)
   Brand Fonts: Playfair Display, Source Sans Pro
-----------------------------------------
*/
/* 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #f8fafe;
  color: #243940;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.65;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: #243940;
  transition: color 0.18s cubic-bezier(.5,1.6,.6,1);
}
ul, ol {
  margin-left: 1.35em;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #243940;
  font-weight: 800;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.36rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
}
p, li {
  font-size: 1rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  margin-bottom: 10px;
}
strong {
  font-weight: bold;
  color: #243940;
}

/* Containers, Sections, Spacing */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* Accent backgrounds */
.accent-bg {
  background: #F4EAD1;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(138,93,56,0.08);
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(36,57,64,0.08);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 0;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: #8A5D38;
}
.main-nav .cta.primary {
  background: #EF516C;
  color: #fff;
  border-radius: 12px;
  padding: 10px 26px;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 16px -4px rgba(239,81,108,0.13);
  font-size: 1.1rem;
  transition: background 0.18s;
}
.main-nav .cta.primary:hover,
.main-nav .cta.primary:focus {
  background: #F9A826;
  color: #243940;
}

/* Hamburger Mobile Menu Button */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #243940;
  background: #F9A826;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(36,57,64,0.10);
  transition: background 0.18s;
  margin-left: 12px;
  z-index: 999;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #EF516C;
  color: #fff;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  inset: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  background: #F4EAD1;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: transform 0.36s cubic-bezier(.78,0,.32,1), left 0s .36s;
  /* Start out of view: */
  transform: translateX(0);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  left: 0;
  transform: translateX(-100vw);
  opacity: 1;
  pointer-events: all;
  transition: transform 0.36s cubic-bezier(.78,0,.32,1);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  margin: 24px 28px 16px 0;
  background: #fff8f0;
  color: #243940;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  box-shadow: 0 2px 12px rgba(138,93,56,0.10);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F9A826;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 0 28px 32px 32px;
}
.mobile-nav a {
  font-size: 1.15rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 800;
  color: #243940;
  padding: 12px 0;
  line-height: 120%;
  border-radius: 8px;
  width: 100%;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #8A5D38;
  color: #fff;
}

/* Responsive Navigation */
@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
  }
  .container {
    max-width: 94vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 600px) {
  .logo img {
    height: 38px;
  }
}

/* HERO SECTION */
.hero {
  background: #fff;
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 43px 0 30px 0;
  position: relative;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 700px;
}
.hero h1 {
  color: #EF516C;
  font-size: 2.7rem;
  font-weight: 900;
  margin-bottom: 13px;
}
.hero p {
  font-size: 1.18rem;
  color: #243940;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  margin-bottom: 25px;
}
.hero .cta.primary {
  margin-top: 12px;
}

/* FEATURE SECTION (Vorteile/Kategorien) */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.features .content-wrapper {
  align-items: flex-start;
  gap: 22px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 22px 22px 22px;
  box-shadow: 0 4px 16px rgba(63, 161, 251, 0.11);
  min-width: 210px;
  max-width: 245px;
  flex: 1 1 210px;
  min-height: 200px;
  transition: transform 0.16s, box-shadow 0.18s;
}
.feature-item img {
  width: 38px;
  height: 38px;
}
.feature-item h3 {
  color: #EF516C;
  font-weight: 800;
  font-size: 1.2rem;
}
.feature-item:hover {
  transform: translateY(-7px) scale(1.045);
  box-shadow: 0 12px 32px rgba(249, 168, 38, 0.20), 0 2px 10px rgba(239,81,108,0.11);
}

/* Cards and Card Containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 3px 16px rgba(63, 161, 251, 0.09);
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 12px 32px rgba(239,81,108,0.14), 0 2px 10px rgba(249,168,38,0.11);
}

.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;
    gap: 21px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-left: 5px solid #EF516C;
  padding: 26px 30px;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 13px rgba(36,57,64,0.12);
  transition: box-shadow 0.18s, border-color 0.2s;
  color: #243940;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #212c2e;
}
.testimonial-card span {
  font-size: 1rem;
  color: #8A5D38;
  font-weight: bold;
}
.testimonial-card:hover {
  box-shadow: 0 8px 31px rgba(249,168,38,0.16), 0 2px 10px rgba(36,57,64,0.11);
  border-color: #F9A826;
}

/* Sections & Utility */
.about {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.kontakt {
  margin-bottom: 60px;
}
section, .section {
  margin-bottom: 60px;
}

.service-list, .faq-list, .tipps-der-oma ul, .vorteile ul, .video-intro-blocks ul {
  padding-left: 22px;
  margin-bottom: 13px;
}
.service-list li, .faq-list p, .video-intro-blocks p {
  margin-bottom: 12px;
}
.preis {
  color: #F9A826;
  font-weight: 900;
  margin-left: 5px;
  font-family: 'Playfair Display', serif;
  font-size: 1.07em;
}

/* Call to Actions */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  border: none;
  outline: none;
  background: #243940;
  color: #fff;
  border-radius: 12px;
  font-size: 1.11rem;
  padding: 13px 32px;
  transition: background 0.19s, color 0.19s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 4px 18px -7px rgba(35,202,246,0.14);
  margin-top: 14px;
  margin-bottom: 8px;
  cursor: pointer;
  position: relative;
}
.cta.primary {
  background: #EF516C;
  color: #fff;
  box-shadow: 0 8px 24px -6px rgba(239,81,108,0.19);
}
.cta:hover, .cta:focus {
  background: #F9A826;
  color: #243940;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 13px 30px -4px rgba(249,168,38,0.19);
  text-decoration: none;
}

/* Accents and Vibrant Micro-Interactions */
a:not(.cta):hover, a:not(.cta):focus {
  color: #EF516C;
  text-decoration: underline;
  background: #FFF3E5;
  border-radius: 5px;
  transition: background 0.14s, color 0.15s;
}

/* Footer */
footer {
  background: #243940;
  color: #fff;
  padding: 28px 0 0 0;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 0.99rem;
  transition: color 0.17s;
  opacity: 0.89;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F9A826;
  opacity: 1;
}
.footer-copy {
  color: #F4EAD1;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 400;
  margin: 0 0 18px 0;
  text-align: center;
}

/* Lists in sections */
.features ul,
.features ol,
.services ul,
.services ol {
  margin-top: 10px;
  margin-bottom: 10px;
}
.features ul li,
.features ol li,
.services ul li,
.services ol li {
  margin-bottom: 9px;
  padding-left: 2px;
  color: #243940;
}

/* Special blocks and tables */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.price-block {
  background: #fff;
  border: 2px solid #F9A826;
  box-shadow: 0 5px 16px rgba(239,81,108,0.09);
  border-radius: 16px;
  padding: 22px 32px;
  min-width: 220px;
}

.pricing-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}

.address-block {
  background: #F4EAD1;
  border-radius: 13px;
  padding: 20px;
  margin-bottom: 14px;
  color: #243940;
  font-size: 1.05rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.faq-list h3 {
  color: #EF516C;
  margin-bottom: 5px;
}

.tips-block, .tipps-der-oma {
  background: #F9A8261e;
  border-radius: 12px;
  padding: 16px 16px 12px 16px;
  margin-top: 8px;
}
.tips-block h3, .tipps-der-oma h3 {
  font-size: 1.13rem;
  color: #8A5D38;
  margin-bottom: 10px;
}

/* Legal Sections Accent */
.legal {
  padding: 36px 18px;
}
.legal h1, .legal h2 {
  color: #EF516C;
}

/* Confirmation page section */
.confirmation {
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animations and Transitions */
.cta, .card, .feature-item, .testimonial-card {
  transition: box-shadow 0.21s cubic-bezier(.5,1.6,.6,1), transform 0.23s cubic-bezier(.15,0.9,.21,1);
}

/* Responsive Layout Adjustments */
@media (max-width: 1024px) {
  .feature-grid {
    gap: 16px;
  }
  .testimonial-card {
    padding: 17px 11px;
  }
}
@media (max-width: 900px) {
  .feature-item {
    min-width: 170px;
    max-width: 100%;
    flex: 1 1 150px;
    padding: 14px 11px 14px 14px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.24rem;
  }
  .section, section, .features, .about {
    padding: 28px 8px;
    margin-bottom: 39px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 560px) {
  .footer-nav {
    gap: 10px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 0.97rem;
  }
  .feature-item, .card {
    padding: 12px 8px 12px 10px;
    min-width: 120px;
  }
}

/*------------- Cookie Consent Banner -------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #243940;
  color: #fff;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 -6px 44px rgba(36,57,64,0.21);
  padding: 20px 16px 22px 16px;
  width: 100vw;
  animation: fadeInCookie 0.45s 0.35s backwards;
}
@keyframes fadeInCookie {
  from { transform: translateY(100%); opacity: 0;}
  to   { transform: translateY(0); opacity: 1;}
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  padding: 7px 22px;
  border-radius: 8px;
  border: none;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.01rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
  background: #F9A826;
  color: #243940;
  margin-right: 2px;
  box-shadow: 0 2px 8px rgba(249,168,38, 0.18);
}
.cookie-banner .cookie-btn.accept {
  background: #EF516C;
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #243940;
  color: #F9A826;
  border: 1.5px solid #F9A826;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: #243940;
}
.cookie-banner .cookie-btn:hover, .cookie-btn:focus {
  background: #8A5D38;
  color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2120;
  inset: 0;
  background: rgba(36,57,64, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModalBg 0.32s;
}
@keyframes fadeInModalBg {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px 30px 30px;
  min-width: 320px;
  max-width: 95vw;
  color: #243940;
  box-shadow: 0 22px 60px 0 rgba(249,168,38, 0.16), 0 2px 10px rgba(36,57,64,0.11);
  animation: fadeInModal 0.55s;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
@keyframes fadeInModal {
  from { transform: translateY(70px) scale(0.9); opacity:0; }
  to   { transform: none; opacity:1; }
}
.cookie-modal h3 {
  font-family: 'Playfair Display', serif;
  color: #EF516C;
  font-size: 1.38rem; 
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 13px;
}
.cookie-modal .cookie-switch {
  appearance: none;
  width: 45px;
  height: 24px;
  background: #24497234;
  border-radius: 23px;
  position: relative;
  transition: background 0.13s;
  outline: none;
  cursor: pointer;
}
.cookie-modal .cookie-switch:checked {
  background: #F9A826;
}
.cookie-modal .cookie-switch:disabled {
  background: #8A5D381a;
  cursor: not-allowed;
}
.cookie-modal .cookie-switch::before {
  content: "";
  display: block;
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 9px rgba(36,57,64,0.09);
  transition: left 0.13s;
}
.cookie-modal .cookie-switch:checked::before {
  left: 25px;
}
.cookie-modal .cookie-switch:disabled::before {
  background: #eee;
}
.cookie-modal label {
  font-size: 1rem;
  color: #243940;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .modal-btn {
  padding: 8px 24px;
  border-radius: 8px;
  background: #EF516C;
  color: #fff;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  outline: none;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal .modal-btn.cancel {
  background: #243940;
  color: #F9A826;
  border: 1.5px solid #F9A826;
}
.cookie-modal .modal-btn:hover, .cookie-modal .modal-btn:focus {
  background: #8A5D38;
  color: #fff;
}
.cookie-modal .close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #8A5D38;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .close:hover {
  color: #EF516C;
}


/*------------------------------------*/
/* FLEXBOX 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; }
/*------------------------------------*/

/* Keyboard and Focus Visibility */
a:focus, button:focus, .cta:focus, .cookie-btn:focus, .modal-btn:focus {
  outline: 2px solid #F9A826;
  outline-offset: 2px;
}

/* Hide mobile nav on desktop */
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Misc improvements */
::-webkit-input-placeholder { color: #aaa; }
::-moz-placeholder { color: #aaa; }
:-ms-input-placeholder { color: #aaa; }
::placeholder { color: #aaa; }

::selection {
  background: #F9A826;
  color: #243940;
}

/* High energy accents (for vibrant_energetic) */
/* Electric highlight for important UI */
.electric-shadow {
  box-shadow: 0 0 0 4px #EF516C22, 0 8px 20px #F9A82633;
}

/* Animation for elements in view */
@media (prefers-reduced-motion: no-preference) {
  [data-animate] {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.77s cubic-bezier(.5,1.6,.55,1), transform 0.53s cubic-bezier(.5,1.6,.55,1);
  }
  [data-animate].in-view {
    opacity: 1;
    transform: none;
  }
}

/* Print improvements */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
}

/* --- END --- */
