/* ============================================================================
   TWILIGHT HAZE ERLEBNISWELTEN – SOFT PASTEL CSS THEME (Flexbox Only)
   Style Strictly for: soft_pastel, mobile first, flexbox layouts only
============================================================================ */
/* 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;
}
main, article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  min-height: 100vh;
  background-color: #FBFBFA;
  color: #193D3D;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}
a { color: #3B988A; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #193D3D; text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
ul, ol { margin-left: 20px; }
li { margin-bottom: 8px; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
button:focus, a:focus { outline: 2px solid #A3C39A; outline-offset: 2px; }
::-webkit-input-placeholder { color: #62796f; opacity: 0.6; }
::-moz-placeholder { color: #62796f; opacity: 0.6; }
:-ms-input-placeholder { color: #62796f; opacity: 0.6; }
::placeholder { color: #62796f; opacity: 0.6; }

/* ============================================================================
   COLOR PALETTE — Soft Pastel Vibe w/ Brand Colors
============================================================================ */
:root {
  --color-primary: #193D3D;
  --color-secondary: #A3C39A;
  --color-accent: #F6F6F2;
  --color-bg-soft: #FBFBFA;
  --color-pastel-green: #CBE7CD;
  --color-pastel-blue: #BEE3DC;
  --color-pastel-yellow: #FFF5CC;
  --color-pastel-pink: #F7D6E0;
  --color-pastel-purple: #E5E7F4;
  --color-text: #193D3D;
  --color-text-dark: #1c1c1f;
  --color-white: #fff;
  --color-footer-bg: #E5E7F4;
  --color-muted: #A7A8AC;
  --shadow-soft: 0 4px 20px rgba(122, 138, 153, 0.10);
}

/* ============================================================================
   TYPOGRAPHY
============================================================================ */
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p {
  margin-bottom: 14px;
  color: var(--color-text);
}
.hero-subheadline {
  font-size: 1.22rem;
  color: #377574;
  margin-bottom: 30px;
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}

/* ============================================================================
   LAYOUT CONTAINERS
============================================================================ */
.container {
  width: 100%;
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEXBOX LAYOUTS — ALL FLEX ONLY */
.header-flex, .footer-flex, .card-container, .content-grid, .features-grid, .testimonial-list, .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.header-flex, .footer-flex {
  justify-content: space-between;
}
.card-container {
  justify-content: flex-start;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  min-width: 230px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
}
.team-section {
  margin-top: 28px;
}

/* CARDS & SECTIONS */
.card, .feature-item, .features-grid > div, .testimonial-card {
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  position: relative;
}
.card {
  padding: 32px 24px;
  min-width: 220px;
  flex: 1 1 310px;
}
.features-grid > div {
  padding: 28px 20px 20px 20px;
  min-width: 220px;
  flex: 1 1 240px;
  transition: box-shadow 0.21s, transform 0.18s;
  border: 1.5px solid var(--color-pastel-green);
  cursor: pointer;
}
.features-grid > div:hover {
  box-shadow: 0 8px 32px 0 rgba(81, 143, 124, 0.15);
  transform: translateY(-4px) scale(1.03);
}
/* HERO BANNER & BACKDROP */
.hero {
  width: 100%;
  background: linear-gradient(150deg, var(--color-pastel-blue) 0%, var(--color-pastel-green) 90%);
  border-radius: 0 0 42px 42px;
  box-shadow: 0 8px 40px -8px #EEEBF7;
  margin-bottom: 46px;
  padding: 44px 0 50px 0;
  min-height: 290px;
}
.hero .container {
  align-items: center;
  justify-content: center;
}

/* SPACING AND ALIGNMENT PATTERNS */
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 18px;
}
.features-grid ul, .features-grid ol, .text-section ul, .text-section ol {
  margin-bottom: 10px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  border: none;
  border-radius: 32px;
  padding: 14px 36px;
  background: linear-gradient(90deg, var(--color-secondary) 25%, var(--color-pastel-blue) 100%);
  color: var(--color-primary);
  font-family: 'Nunito', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.14rem;
  transition: background 0.24s, box-shadow 0.18s, color 0.2s, transform 0.16s;
  box-shadow: 0 4px 22px 0 rgba(47, 117, 90, 0.07);
  cursor: pointer;
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.02em;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--color-pastel-green), var(--color-pastel-blue));
  color: #111;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(81, 143, 124, 0.18);
}
.btn-secondary {
  display: inline-block;
  border: none;
  border-radius: 32px;
  padding: 12px 28px;
  background: var(--color-pastel-blue);
  color: var(--color-primary);
  font-family: 'Nunito', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.19s;
  cursor: pointer;
  margin-top: 8px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-secondary);
  color: var(--color-text);
}
.btn-muted {
  background: transparent;
  border: 1.5px solid var(--color-secondary);
  color: var(--color-primary);
  padding: 12px 24px;
  border-radius: 32px;
  font-size: 1rem;
  font-family: 'Nunito', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  margin-left: 9px;
  margin-top: 8px;
  transition: background 0.17s, color 0.17s;
}
.btn-muted:hover, .btn-muted:focus {
  background: var(--color-pastel-green);
  color: var(--color-primary);
}

/* ============================================================================
   HEADER & NAVIGATION
============================================================================ */
header {
  background: var(--color-accent);
  box-shadow: 0 2px 20px rgba(95, 135, 120, 0.045);
  position: relative;
  z-index: 100;
  padding: 0;
}
.header-flex {
  padding: 16px 0;
  min-height: 60px;
  align-items: center;
  gap: 22px;
}
.logo img {
  width: 162px;
  height: auto;
  display: block;
  margin-right: 8px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Nunito', 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 16px;
  border-radius: 18px;
  transition: background 0.19s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus, .footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-pastel-green);
  color: var(--color-text-dark);
}

/* ============================================================================
   MOBILE NAVIGATION (BURGER MENU)
============================================================================ */
.mobile-menu-toggle {
  background: linear-gradient(120deg, var(--color-pastel-blue), var(--color-pastel-green));
  color: var(--color-primary);
  border: none;
  font-size: 2.2rem;
  border-radius: 16px;
  width: 48px; height: 48px;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 3px 14px rgba(76, 168, 149, 0.15);
  cursor: pointer;
  z-index: 1140;
  transition: background 0.19s, transform 0.18s;
  margin-left: 16px;
}
.mobile-menu-toggle:active {
  background: var(--color-pastel-green);
  transform: scale(0.96);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #F6F6F2, var(--color-pastel-blue) 84%, var(--color-pastel-green) 100%);
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.45,0,.55,1);
  display: flex;
  flex-direction: column;
  padding: 32px 22px 22px 22px;
  box-shadow: 0 6px 32px 0 rgba(47, 117, 90, 0.11);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 10px;
}
.mobile-nav a {
  font-family: 'Nunito', 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 1.22rem;
  background: var(--color-pastel-green);
  border-radius: 22px;
  padding: 10px 14px;
  font-weight: 600;
  transition: background 0.18s, color 0.17s;
  margin-bottom: 7px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #222;
}

/* ============================================================================
   FOOTER
============================================================================ */
footer {
  width: 100%;
  background: var(--color-footer-bg);
  border-top: 1.5px solid var(--color-pastel-blue);
  margin-top: 44px;
  padding: 34px 0 18px 0;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.footer-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-nav a {
  font-family: 'Nunito', Arial, sans-serif;
  color: #465055;
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: 15px;
  font-weight: 500;
  transition: background 0.17s, color 0.17s;
}
footer address {
  font-style: normal;
  color: #465055;
  font-size: 0.99rem;
  line-height: 1.5;
  margin-top: 4px;
}
footer a { color: #465055; font-size: 1rem; }
footer a:hover, footer a:focus { color: var(--color-primary); }

/* ============================================================================
   TESTIMONIALS & CARDS
============================================================================ */
.testimonial-list {
  gap: 24px;
}
.testimonial-card {
  background: var(--color-pastel-yellow);
  border: 1.5px solid var(--color-pastel-green);
  box-shadow: 0 3px 18px rgba(122, 138, 153, 0.07);
  border-radius: 18px;
  min-width: 220px;
  max-width: 410px;
  margin-bottom: 20px;
  color: var(--color-text-dark);
  transition: box-shadow 0.15s, transform 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 22px 0 rgba(247, 214, 224, 0.17);
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card strong {
  color: var(--color-primary);
  font-size: 1.04rem;
  letter-spacing: 0.009em;
}
.testimonial-card span {
  color: #F7B433;
  font-size: 1.16rem;
  font-family: 'Nunito', Arial, sans-serif;
}

/* ============================================================================
   RESPONSIVE DESIGN (Mobile First)
============================================================================ */
@media (max-width: 1000px) {
  .features-grid, .testimonial-list, .footer-flex, .header-flex, .contact-details {
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav { gap: 10px; }
  .footer-nav { gap: 10px; margin-top: 9px; justify-content: flex-start; }
}
@media (max-width: 768px) {
  .header-flex, .footer-flex, .testimonial-list, .contact-details, .features-grid, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .btn-primary, .btn-secondary, .btn-muted {
    width: 100%;
    text-align: center;
    font-size: 1.08rem;
    padding-left: 0;
    padding-right: 0;
  }
  .hero {
    padding: 19px 0 32px 0;
    border-radius: 0 0 26px 26px;
    min-height: 210px;
  }
  .footer-flex {
    gap: 24px;
  }
  .features-grid > div {
    min-width: unset;
    margin-bottom: 20px;
  }
  .section {
    padding: 22px 8px;
    margin-bottom: 38px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.34rem; }
}
@media (max-width: 580px) {
  .container { padding: 0 6px; }
  .footer-flex, .header-flex, .contact-details {
    flex-direction: column;
    gap: 16px;
  }
  .features-grid > div {
    padding: 16px 7px 15px 8px;
  }
  .testimonial-card { padding: 14px; }
}

/* ============================================================================
   MISC VISUALS
============================================================================ */
hr {
  border: none;
  border-top: 1.5px solid var(--color-pastel-blue);
  margin: 24px 0;
}

/* Decorative icons/images */
.features-grid img, .text-section img, .contact-details img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--color-pastel-green);
  padding: 7px;
  box-shadow: 0 1px 8px 0 rgba(30, 90, 68, 0.01);
  margin-bottom: 7px;
}

/* ============================================================================
   COOKIE CONSENT BANNER & MODAL
============================================================================ */
.cookie-consent-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, var(--color-pastel-pink) 0%, var(--color-pastel-yellow) 100%);
  color: var(--color-primary);
  box-shadow: 0 -2px 24px 0 rgba(47, 117, 90, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10000;
  padding: 18px 12px 18px 12px;
  gap: 14px;
  animation: cookie-banner-slidein 0.66s cubic-bezier(.68,0,.26,1);
}
@keyframes cookie-banner-slidein {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  font-size: 1rem;
  margin-bottom: 7px;
}
.cookie-consent-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-consent-banner .btn-primary,
.cookie-consent-banner .btn-secondary,
.cookie-consent-banner .btn-muted {
  min-width: 128px;
  margin: 0 0 0 0;
  font-size: 1rem;
  box-shadow: none;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(57, 97, 84, 0.18);
  z-index: 11000;
  animation: cookie-backdrop-fadein 0.5s;
}
@keyframes cookie-backdrop-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  position: fixed;
  bottom: 54px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  max-width: 400px;
  width: 92vw;
  border-radius: 22px;
  box-shadow: 0 3px 26px 0 rgba(60, 111, 90, 0.12);
  z-index: 12040;
  padding: 28px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookie-modal-in 0.55s;
}
@keyframes cookie-modal-in {
  from { transform: translate(-50%,60%); opacity: 0; }
  to   { transform: translate(-50%,0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.18rem;
  font-family: 'Nunito', Arial, sans-serif;
  margin-bottom: 7px;
}
.cookie-modal-category {
  background: var(--color-pastel-blue);
  border-radius: 14px;
  padding: 11px 13px 9px 13px;
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
}
.cookie-modal-category.essential {
  background: var(--color-pastel-green);
  color: var(--color-primary);
  font-weight: 600;
}
.cookie-modal-category label {
  flex: 1;
  font-size: 1rem;
}
.cookie-modal-close {
  align-self: flex-end;
  background: var(--color-pastel-green);
  color: var(--color-primary);
  border: none;
  font-size: 1.5rem;
  border-radius: 10px;
  padding: 2px 13px 4px 13px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-pastel-yellow);
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

/* Toggle switch for cookies */
.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 22px;
}
.switch input { display: none; }
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #e7edea;
  border-radius: 22px;
  transition: background 0.18s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: var(--color-secondary);
  border-radius: 50%;
  transition: transform 0.18s, background 0.18s;
}
.switch input:checked + .slider {
  background: var(--color-pastel-green);
}
.switch input:checked + .slider:before {
  transform: translateX(14px);
  background: var(--color-primary);
}

/* ============================================================================
   DREAMY EFFECTS: SHADOWS & MICRO-INTERACTIONS
============================================================================ */
.card, .features-grid > div, .testimonial-card, .cookie-modal, .btn-primary, .btn-secondary {
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.19s, transform 0.16s, background 0.22s, color 0.16s;
}
.card:hover, .features-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 8px 24px 0 rgba(47, 117, 90, 0.09);
  transform: translateY(-2px) scale(1.017);
}

/* ============================================================================
   PRINT FRIENDLY
============================================================================ */
@media print {
  header, footer, .btn-primary, .btn-secondary, .btn-muted, .mobile-menu, .cookie-consent-banner, .cookie-modal, .cookie-modal-backdrop {
    display: none !important;
  }
}
