/* ---------------------------------------------------
   CSS RESET & BASELINE for Brisk Breeze Abenteuer
   --------------------------------------------------- */
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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fbfaff;
  color: #20526a;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
ol, ul {
  list-style: disc inside;
}
a {
  color: #348ca6;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #63a375;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* --------------------------------------------
   PASTEL PALETTE (soft_pastel vibe)
   -------------------------------------------- */
:root {
  --color-primary: #20526a;
  --color-secondary: #63a375;
  --color-accent: #f9f6ee;
  --color-pastel-blue: #d2e3f1;
  --color-pastel-green: #d0eed2;
  --color-pastel-peach: #ffede2;
  --color-pastel-purple: #f0e6fb;
  --color-pastel-yellow: #fffbe5;
  --color-pastel-pink: #ffe3e8;
  --color-text: #20526a;
  --color-muted: #91a5be;
  --color-white: #ffffff;
  --color-black: #12202a;
}

/* ---------------------------------------------------
   TYPOGRAPHY – SOFT/ROUNDED, MODERN PASTEL VIBE
   --------------------------------------------------- */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  color: var(--color-primary);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--color-primary);
}
p, ul, ol {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1em;
  color: var(--color-text);
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: bold;
  color: var(--color-primary);
}
.note {
  color: var(--color-secondary);
  font-size: 0.95rem;
}

/* ---------------------------------------------------
   CONTAINER / LAYOUT
   --------------------------------------------------- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 30px;
}

.cta-section {
  background: linear-gradient(90deg, #d2e3f1 35%, #fffbe5 100%);
  border-radius: 30px;
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ---------------------------------------------------
   HEADER, NAV, LOGO & MOBILE MENU
   --------------------------------------------------- */
header {
  background: var(--color-accent);
  box-shadow: 0 2px 10px 0 rgba(208,227,242, 0.11);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  background: transparent;
  border-radius: 18px;
  padding: 8px 16px;
  transition: background 0.18s, color 0.16s;
}
nav a.cta-btn {
  background: var(--color-secondary);
  color: #fff;
  border-radius: 24px;
  font-weight: 600;
  margin-left: 8px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 12px 0 rgba(99,163,117, 0.15);
  transition: background 0.23s, color 0.2s, box-shadow 0.2s;
}
nav a.cta-btn:hover,
nav a.cta-btn:focus {
  background: #79b989;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(99,163,117, 0.21);
}
nav a:hover,
nav a:focus {
  background: var(--color-pastel-blue);
  color: var(--color-secondary);
}
nav a.active {
  background: var(--color-pastel-peach);
  color: var(--color-primary);
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 52;
  box-shadow: 0 2px 12px 0 rgba(99,163,117, 0.13);
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-primary);
  color: #fff;
  outline: 2px solid var(--color-pastel-peach);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(98deg, #d2e3f1 60%, #ffe3e8 100%);
  box-shadow: 0 3px 24px 0 rgba(208,227,241,0.30);
  z-index: 51;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.47,1.64,.41,.8);
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--color-primary);
  background: none;
  margin: 24px 0 0 24px;
  align-self: flex-start;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.19s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-pastel-yellow);
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 60px 24px 0 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  background: transparent;
  color: var(--color-primary);
  padding: 14px 20px;
  border-radius: 22px;
  transition: background 0.21s, color 0.21s;
  font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-pastel-green);
  color: var(--color-secondary);
}
.mobile-nav a.cta-btn {
  background: var(--color-secondary);
  color: #fff;
}

@media (max-width: 1100px) {
  .container { max-width: 1000px; }
}
@media (max-width: 900px) {
  .container { max-width: 850px; }
}
/* Header responsive navigation */
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

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

/* ---------------------------------------------------
   HERO SECTION
   --------------------------------------------------- */
.hero {
  margin-bottom: 60px;
  padding: 50px 0 60px 0;
  background: linear-gradient(98deg, #ffede2 30%, #d2e3f1 85%);
  border-radius: 32px;
  box-shadow: 0 4px 40px 0 rgba(221, 209, 255, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.4rem;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.hero .subheadline {
  color: var(--color-secondary);
  font-size: 1.15rem;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, sans-serif;
}
.hero .cta-btn {
  font-size: 1.13rem;
  padding: 16px 38px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 16px;
}

/* ---------------------------------------------------
   GENERAL BUTTONS
   --------------------------------------------------- */
.cta-btn, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--color-secondary);
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: 34px;
  font-size: 1.08rem;
  font-weight: 600;
  box-shadow: 0 2px 12px 0 rgba(99,163,117, 0.13);
  display: inline-block;
  outline: none;
  transition: background 0.18s, box-shadow 0.19s, transform 0.12s;
}
.cta-btn:hover,
.cta-btn:focus,
.btn:hover,
.btn:focus {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(32,82,106, 0.17);
  transform: translateY(-2px) scale(1.03);
}

/* ---------------------------------
   FLEX WRAPPED CONTAINER PATTERNS
   --------------------------------- */
.feature-grid, .card-container, .content-grid, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div, .feature-item, .card {
  background: var(--color-pastel-blue);
  box-shadow: 0 2px 16px 0 rgba(208,227,241,0.19);
  border-radius: 20px;
  padding: 28px 24px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 260px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.21s, transform 0.16s;
  position: relative;
  z-index: 2;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 28px 0 rgba(99,163,117,0.18);
  transform: translateY(-2px) scale(1.025);
}

.card { 
  background: var(--color-pastel-purple);
}

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

.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, .testimonial-list .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 30px;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(59, 105, 158,0.08);
  color: #20526a;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  min-width: 210px;
  max-width: 450px;
  font-size: 1.08rem;
  transition: box-shadow 0.18s, transform 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 30px 0 rgba(32,82,106,0.22);
  transform: translateY(-2px) scale(1.025);
}
.testimonial-meta {
  color: var(--color-muted);
  font-size: 0.95rem;
  font-style: italic;
  margin-top: -10px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Utility Spacing */
.mb-0 { margin-bottom: 0 !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-24 { margin-top: 24px !important; }
.py-24 { padding-top: 24px !important; padding-bottom: 24px !important; }

/* ------------------------------------
   TEXT SECTION – for privacy/content pages
   ------------------------------------ */
.text-section {
  background: var(--color-pastel-peach);
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 2px 10px 0 rgba(240, 230, 251, 0.10);
}
.text-section h2 {
  font-size: 1.35rem;
  margin-top: 24px;
  margin-bottom: 10px;
}
.text-section ul {
  margin-bottom: 14px;
}
.text-section p {
  margin-bottom: 10px;
}

/* ------------------------------------
   FOOTER STYLES
   ------------------------------------ */
footer {
  background: var(--color-pastel-purple);
  border-radius: 30px 30px 0 0;
  margin-top: 50px;
  padding: 38px 0 24px 0;
  box-shadow: 0 -2px 20px 0 rgba(208,227,241,0.14);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  font-size: 1rem;
}
footer nav a {
  color: var(--color-primary);
  padding: 4px 12px;
  background: transparent;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin: 2px 0;
  transition: background 0.18s, color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-secondary);
  background: var(--color-pastel-yellow);
}
.footer-contact {
  color: var(--color-muted);
  text-align: center;
  font-size: 0.92rem;
}
.footer-logo img {
  width: 54px;
  margin: 15px auto 0 auto;
  display: block;
  opacity: 0.83;
}

/* ---------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
   --------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 3000;
  background: linear-gradient(93deg, #fffbe5 56%, #d0eed2 100%);
  color: var(--color-primary);
  box-shadow: 0 -6px 30px 0 rgba(99,163,117, 0.14);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 28px 18px 24px 18px;
  gap: 20px;
  border-radius: 20px 20px 0 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
  min-height: 44px;
  animation: cookieBannerIn 0.7s cubic-bezier(.21,.81,.38,.98);
}
@keyframes cookieBannerIn {
  0% { transform: translateY(100%); opacity: 0; }
  70% { opacity: 1; }
  100% { transform: translateY(0); }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  border-radius: 24px;
  padding: 10px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  outline: none;
  margin-right: 0;
  box-shadow: 0 2px 10px 0 rgba(255,227,232, 0.09);
  transition: background 0.14s, color 0.13s, transform 0.13s;
}
.cookie-btn-accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #79b989;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.cookie-btn-reject {
  background: var(--color-pastel-peach);
  color: var(--color-primary);
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: var(--color-pastel-pink);
  color: var(--color-secondary);
}
.cookie-btn-settings {
  background: transparent;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: var(--color-pastel-blue);
  color: var(--color-primary);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom:0;
  background: rgba(32,82,106,0.18);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.23s, visibility 0.19s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal-dialog {
  background: linear-gradient(120deg,#fffbe5 76%, #ffe3e8 120%);
  color: var(--color-primary);
  border-radius: 24px;
  box-shadow: 0 2px 35px 0 rgba(221, 209, 255, 0.18);
  padding: 38px 30px 30px 30px;
  max-width: 420px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: cookieModalPopIn 0.38s;
}
@keyframes cookieModalPopIn {
  from { transform: scale(0.95) translateY(60px); opacity: 0; }
  to   { transform: scale(1.0) translateY(0);     opacity: 1; }
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-modal-close {
  background: transparent;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--color-primary);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-pastel-yellow);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-pastel-blue);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--color-secondary);
  margin-right: 2px;
}
.cookie-category-essential {
  opacity: 0.77;
}
.cookie-info {
  font-size: 0.98rem;
  color: var(--color-muted);
}

/* ---------------------------------------------------
   RESPONSIVE STYLES + FLEX ADJUSTMENTS
   --------------------------------------------------- */
@media (max-width: 850px) {
  .container { padding: 0 8px; }
  .content-wrapper {
    padding: 0 4px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .hero {
    padding: 34px 0 36px 0;
    border-radius: 26px;
  }
  .hero h1 { font-size: 2.05rem; }
  .section, section {
    margin-bottom: 34px;
    padding: 30px 6px;
    border-radius: 18px;
  }
  .content-wrapper { gap: 8px; }
  .feature-grid, .card-container, .content-grid, .testimonial-list {
    gap: 14px;
  }
  .feature-grid > div, .card {
    min-width: 90vw;
    flex: 1 1 90vw;
    padding: 18px 16px;
  }
  .testimonial-card {
    max-width: 100vw;
    padding: 16px 12px;
  }
  .footer-logo img { width: 40px; }
}
@media (max-width: 600px) {
  .hero {
    padding: 23px 0 27px 0;
    border-radius: 13px;
  }
  h1, .hero h1 { font-size: 1.4rem; }
  h2 { font-size: 1.15rem; }
  nav a, .mobile-nav a { font-size: 1rem; padding: 12px 13px; }
  .cta-btn, .btn { padding: 11px 18px; font-size: 1rem; }
  .feature-grid > div, .card { min-width: 88vw; padding: 12px 8px; }
}
@media (max-width: 600px) {
  .feature-grid, .card-container, .content-grid, .testimonial-list {
    gap: 8px;
  }
}

/* Flex wrap and direction for content layouts */
@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid, .testimonial-list {
    flex-direction: column;
    align-items: stretch;
  }
  .content-wrapper {
    align-items: flex-start;
  }
}
.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: stretch;
    gap: 16px;
  }
}

/*---------------------------------------------
ANIMATIONS & MICRO-INTERACTIONS
---------------------------------------------*/
.cta-btn, .btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-btn-accept, .cookie-btn-reject, .cookie-btn-settings {
  transition: background 0.17s, color 0.16s, box-shadow 0.15s, transform 0.12s;
}
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.22s, transform 0.15s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 6px 30px rgba(32,82,106,0.17);
  transform: translateY(-3px) scale(1.03);
}

/*---------------------------------------------
MISC/UTILITY
---------------------------------------------*/
::-webkit-scrollbar {
  width: 10px;
  background: #ededf1;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #e2e8ef;
  border-radius: 8px;
}

/* Hide visually but remain accessible */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}
