/* ===================================================================  */
/*        Futurist Wave Radreisen - 'warm_friendly' CSS Theme          */
/* ===================================================================  */
/* --- RESET & BASE TYPOGRAPHY --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F5F2E7;
  color: #154C59;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
a {
  color: #4DA167;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #154C59;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
strong, b {
  font-weight: 700;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 24px;
}
/* --- TYPOGRAPHY SCALE --- */
h1,
.h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #154C59;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2,
.h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #154C59;
  margin-bottom: 20px;
}
h3,
.h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.375rem;
  margin-bottom: 16px;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #154C59;
}
.em {
  font-style: italic;
}
/* --- CONTAINER & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* --- HEADER & NAVIGATION --- */
header {
  background: #F5F2E7;
  position: relative;
  border-bottom: 2px solid #f1e9d7;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  height: 56px;
  width: auto;
  border-radius: 12px;
}
.main-nav {
  display: flex;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.18s;
  color: #154C59;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F5E6C6;
  color: #4DA167;
}
.cta-button {
  display: inline-block;
  background: #4DA167;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 40px;
  padding: 14px 32px;
  margin-left: 14px;
  box-shadow: 0 3px 18px rgba(77,161,103,0.12);
  transition: background 0.22s, transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  text-align: center;
}
.cta-button:hover,
.cta-button:focus {
  background: #154C59;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(21,76,89, 0.15);
}
/* Hide mobile toggle on desktop */
.mobile-menu-toggle {
  display: none;
}
/* --- MOBILE BURGER MENU --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  z-index: 1001;
  background: rgba(245,242,231,0.97);
  transition: transform 0.35s cubic-bezier(.8,.18,.41,.99);
  will-change: transform;
  box-shadow: 0 4px 32px rgba(21,76,89,0.20);
}
.mobile-menu.open {
  display: block;
  transform: translateX(0);
}
.mobile-menu {
  transform: translateX(100vw);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #154C59;
  position: absolute;
  top: 20px;
  right: 28px;
  cursor: pointer;
  transition: color 0.18s;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F5E6C6;
  color: #4DA167;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 90px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.27rem;
  color: #154C59;
  padding: 16px 36px;
  border-radius: 12px;
  width: 100%;
  text-align: center;
  transition: background 0.17s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5E6C6;
  color: #4DA167;
}
/* --- HERO SECTION --- */
.hero {
  background: #FFA9590e;
  border-radius: 24px;
  box-shadow: 0 4px 26px rgba(77,161,103,0.07);
  margin-bottom: 60px;
  padding: 60px 20px 48px 20px;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: #154C59;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.18rem;
  color: #466e7f;
  margin-bottom: 28px;
}
/* --- SECTIONS --- */
section:not(.hero):not(.testimonials) {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 14px rgba(21,76,89,0.06);
}
section h2 {
  color: #154C59;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
section ul {
  padding-left: 20px;
}
section ul li {
  color: #154C59;
  font-size: 1.07rem;
  margin-bottom: 0.6em;
}
section ul li strong {
  color: #4DA167;
}
section > .container > .content-wrapper > a.cta-button {
  margin-top: 16px;
}
/* --- FLEXBOX UTILITIES & MANDATORY PATTERNS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff9ef;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(245,169,89,0.09);
}
.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: 20px;
  padding: 28px 28px 22px 28px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(77,161,103,0.13);
  margin-bottom: 24px;
  margin-top: 12px;
  max-width: 740px;
}
.testimonials .testimonial-card:last-child {
  margin-bottom: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* --- TESTIMONIALS --- */
.testimonials {
  background: #ffe9ca;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 44px 20px 32px 20px;
  box-shadow: 0 4px 36px rgba(245,169,89,0.08);
}
.testimonials h2 {
  color: #154C59;
  margin-bottom: 18px;
  font-size: 2rem;
}
.testimonial-card p {
  color: #154C59;
  font-size: 1.07rem;
}
.testimonial-meta {
  color: #4DA167;
  font-size: 0.95rem;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 12px;
}
.stars {
  color: #FFA959;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 1.03rem;
}
/* --- FOOTER --- */
footer {
  margin-top: 40px;
  background: #154C59;
  color: #ffe9ca;
  border-radius: 24px 24px 0 0;
  padding-top: 28px;
  padding-bottom: 32px;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
footer img {
  height: 60px;
  width: auto;
  border-radius: 15px;
  background: #4DA167;
  padding: 4px 12px;
}
footer a {
  color: #ffe9ca;
  text-decoration: underline;
  transition: color 0.16s;
}
footer a:hover, footer a:focus {
  color: #4DA167;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
footer strong {
  color: #fff;
}
footer > .container > .content-wrapper > div {
  font-size: 0.97rem;
}
/* --- FORMS (if any) --- */
input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 14px;
  border: 1.5px solid #4DA167;
  border-radius: 10px;
  margin-bottom: 12px;
  background: #fefefc;
  transition: border-color 0.17s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #FFA959;
  outline: none;
  box-shadow: 0 2px 8px rgba(245,169,89,0.07);
}
button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 40px;
  border: none;
  background: #4DA167;
  color: #fff;
  padding: 13px 30px;
  cursor: pointer;
  transition: background 0.21s, transform 0.13s;
}
button:hover, button:focus {
  background: #154C59;
  color: #fff;
  transform: translateY(-2px);
}
/* --- TEXT SECTIONS & MISC --- */
.text-section {
  background: #fff9ef;
  padding: 20px 16px;
  border-radius: 18px;
  margin-bottom: 16px;
  color: #154C59;
  font-size: 1.01rem;
  box-shadow: 0 2px 10px rgba(245,169,89,0.07);
}
/* --- ACCESSIBILITY HELPERS --- */
.sr-only {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #ffe9ca;
  color: #154C59;
  box-shadow: 0 -2px 32px rgba(21,76,89,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 18px 22px 24px;
  z-index: 1100;
  border-radius: 20px 20px 0 0;
  animation: cookieBannerIn 0.5s cubic-bezier(.7,-0.01,.37,1.01);
  transition: transform 0.25s cubic-bezier(.7,-0.01,.37,1.01);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-banner p {
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  border-radius: 40px;
  border: none;
  padding: 11px 22px;
  margin: 0 0 0 0;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(21,76,89,0.03);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.11s, color 0.13s;
}
.cookie-banner .accept {
  background: #4DA167;
  color: #fff;
}
.cookie-banner .reject {
  background: #d55353;
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  border: 1.5px solid #4DA167;
  color: #4DA167;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #154C59;
  color: #fff;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #154C59;
  color: #fff;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #F5E6C6;
  color: #154C59;
}
/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(21,76,89,0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.3s cubic-bezier(.4,-0.01,.37,1.01);
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff9ef;
  padding: 36px 28px 26px 28px;
  border-radius: 24px;
  box-shadow: 0 8px 44px 0 rgba(21,76,89,0.14);
  width: 95%;
  max-width: 410px;
  color: #154C59;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(60px);
  animation: modalIn 0.35s cubic-bezier(.62,.05,.36,1.1);
  position: relative;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(160px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.cookie-category input[type=checkbox] {
  accent-color: #4DA167;
  width: 22px;
  height: 22px;
}
.cookie-category .category-name {
  font-weight: 500;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.07rem;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: #154C59;
  cursor: pointer;
  border-radius: 50%;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  background: #F5E6C6;
}
/* --- RESPONSIVE BREAKPOINTS: MOBILE FIRST --- */
@media (max-width: 1080px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .content-wrapper,
  .footer .content-wrapper {
    gap: 20px;
  }
  section, .hero, .testimonials {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  /* NAVIGATION */
  .main-nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 2.1rem;
    color: #154C59;
    padding: 9px 11px;
    border-radius: 9px;
    cursor: pointer;
    transition: background 0.14s;
    margin-left: 6px;
    z-index: 1002;
  }
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    background: #F5E6C6;
    color: #4DA167;
  }
  .content-wrapper {
    gap: 16px;
  }
  .hero {
    padding: 44px 10px 30px 10px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .section, .testimonials {
    padding: 26px 6px;
  }
}
@media (max-width: 600px) {
  html { font-size: 14px; }
  body, .container {
    padding: 0 !important;
  }
  .footer .content-wrapper,
  footer .content-wrapper {
    padding-left: 2px;
    padding-right: 2px;
  }
  .section, section, .testimonials {
    padding: 16px 2px;
    border-radius: 16px;
  }
  img {
    border-radius: 8px;
  }
}
@media (max-width: 480px) {
  h1, .h1 { font-size: 1.5rem; }
  h2, .h2 { font-size: 1.13rem; }
  h3, .h3 { font-size: 1.02rem; }
  .hero, .testimonials, .section, section { padding: 11px 0 14px 0; border-radius: 8px; }
  .testimonial-card { padding: 13px 10px 13px 10px; border-radius: 10px; }
  footer { border-radius: 8px 8px 0 0; padding-top: 12px; padding-bottom: 16px; }
  .cookie-modal { padding: 16px 10px 12px 10px; border-radius: 8px; }
  .cookie-banner {padding:13px 6px 14px 12px; border-radius:8px 8px 0 0;}
}
/* --- FLEX DIRECTION UTILITIES --- */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .footer .content-wrapper,
  footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.cta-button, button, .main-nav a, .mobile-nav a, .cookie-banner button {
  transition: background 0.18s, color 0.12s, transform 0.18s, box-shadow 0.12s;
}
.card, .testimonial-card {
  transition: box-shadow 0.14s, transform 0.14s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(77,161,103,0.18);
  transform: translateY(-6px) scale(1.03);
}
.card:active, .testimonial-card:active {
  box-shadow: 0 2px 12px rgba(245,169,89,0.06);
  transform: scale(0.97);
}
.text-section {
  transition: box-shadow 0.13s, background 0.13s;
}
.text-section:hover {
  background: #fff5e6;
  box-shadow: 0 6px 22px 0 rgba(245,169,89,0.15);
}
/* --- Z-INDEX LAYERING --- */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 1000; }
.mobile-menu.open { z-index: 1050; }
.cookie-modal-overlay { z-index: 1200; }

/* --- END FUTURIST WAVE 'WARM_FRIENDLY' CSS --- */
