/* ========================
   RESET & NORMALIZATION
===========================*/
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F8F6F2;
  color: #1A2C42;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: #1A2C42;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
h1 { font-size: 2.8rem;  }
h2 { font-size: 2.1rem;  }
h3 { font-size: 1.5rem;  }
h4 { font-size: 1.2rem;  }
p { margin-bottom: 1em; }
img {
  max-width: 100%;
  display: block;
  border: none;
}
a {
  color: #E2B963;
  text-decoration: none;
  transition: color .2s cubic-bezier(.68,-.6,.32,1.6);
}
a:hover, a:focus {
  color: #1A2C42;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 1rem;
}
th, td {
  padding: 16px 10px;
  border-bottom: 2px solid #E2B963;
  background: #FFF9E6;
  text-align: left;
}
th { background: #E2B963; color: #1A2C42; font-weight: bold; }

/* ========================
      BRAND COLORS
===========================*/
:root {
  --primary: #1A2C42;
  --secondary: #E2B963;
  --accent: #F8F6F2;
  --fun-1: #FC7967; /* Coral */
  --fun-2: #5FD8C4; /* Turquoise */
  --fun-3: #93B0F2; /* Soft Blue */
  --fun-4: #FFDE59; /* Yellow Accent */
  --card-bg: #FFFFFF;
  --shadow: 0 3px 24px 0 rgba(58, 52, 89, 0.09);
  --radius: 22px;
}

/* ========================
      TYPOGRAPHY SCALE
===========================*/
.display {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  font-size: 2.8rem;
}
.body { font-family: 'Montserrat', Arial, sans-serif; font-size: 1rem; }

/* ========================
      SPACING UTILITIES
===========================*/
.section { margin-bottom: 60px; padding: 40px 20px; }
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: var(--card-bg); border-radius: var(--radius); box-shadow: var(--shadow); transition: transform .14s cubic-bezier(.68,-.6,.32,1.6), box-shadow .18s; }
.card:hover, .card:focus-within { transform: translateY(-2px) scale(1.015); box-shadow: 0 8px 32px 0 rgba(250,120,80,0.14); }
.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; background: #FFF9E6; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 20px; border-left: 8px solid var(--fun-2); min-width: 0; max-width: 100%; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px 18px; min-width: 220px; flex: 1 1 260px; transition: box-shadow .16s, transform .16s; border-top: 7px solid var(--fun-3); }
.feature-item img { height: 40px; margin-bottom: 10px; }
.feature-item:hover { box-shadow: 0 8px 32px 0 rgba(35,181,185,0.12); transform: scale(1.032) rotate(-2deg); border-top-color: var(--fun-1); }

/* ========================
    HEADER & NAVIGATION
===========================*/
header {
  background: var(--primary);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 12px 0 rgba(26,44,66,0.02);
}
header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
header img { height: 46px; }
nav { display: flex; gap: 22px; align-items: center; }
header nav a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 16px;
  padding: 7px 14px;
  transition: background .15s, color .16s;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: .5px;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  text-shadow: 0 2px 7px #ffde59a9;
}
.cta-btn {
  background: var(--fun-1);
  color: var(--primary);
  border-radius: 19px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  box-shadow: 0 7px 17px 0 rgba(255, 119, 90, 0.13);
  border: none;
  letter-spacing: 1px;
  margin-left: 18px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background .15s, color .16s, transform .12s;
  outline: none;
  position: relative;
}
.cta-btn:after {
  content: ' →';
  font-family: inherit;
  font-size: 1em;
  transition: margin-left .2s cubic-bezier(.68,-.6,.32,1.6);
  margin-left: 0px;
  opacity: .6;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--fun-2);
  color: var(--primary);
  transform: translateY(-2px);
}
.cta-btn:hover:after, .cta-btn:focus:after {
  margin-left: 9px;
}

.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 8px;
  position: relative;
  z-index: 1002;
  transition: background .18s;
  box-shadow: 0 3px 10px 0 rgba(255,222,89, .07);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--fun-4);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 16px 56px 0 rgba(90,72,50,0.18);
  transform: translateX(-105vw);
  transition: transform .38s cubic-bezier(.77,0,.18,1);
  z-index: 1700;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--primary);
  padding: 16px;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 30px;
  transition: color .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--fun-1);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 36px;
  align-items: flex-start;
  margin-top: 24px;
}
.mobile-nav a {
  font-size: 1.35rem;
  color: var(--primary);
  font-weight: 700;
  padding: 11px 0;
  width: 100%;
  border-radius: 15px;
  transition: background .18s, color .15s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--fun-3);
  color: #fff;
}

/* =========================
       HERO SECTIONS
============================*/
.hero {
  background: linear-gradient(100deg, var(--fun-4) 0%, var(--fun-2) 40%, #fff 100%);
  padding: 65px 0 55px 0;
  margin-bottom: 0;
  border-bottom-left-radius: 38px;
  border-bottom-right-radius: 38px;
  box-shadow: 0 3px 24px 0 rgba(58, 52, 89, 0.06);
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 650px;
  gap: 15px;
}
.hero h1 {
  font-size: 2.6rem;
  font-family: 'Merriweather', Georgia, serif;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}
.hero p {
  font-size: 1.15rem;
  color: #1A2C42cc;
}

/* ==========================
      FEATURES/GRIDS
===========================*/
.feature-grid {
  display: flex;
  flex-flow: row wrap;
  gap: 24px;
  width: 100%;
  justify-content: space-between;
  margin-top: 18px;
}

/* ==========================
      TESTIMONIALS
===========================*/
.testimonials .testimonial-card {
  background: #FFF9E6;
  border-left: 8px solid var(--fun-1);
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  font-size: 1.08rem;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  color: #191e26;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--fun-2);
  margin-left: 13px;
  font-size: .97em;
}

/* ==========================
      REVIEWS & CARDS
===========================*/
.review-teaser {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 16px 16px 22px;
  margin-bottom: 20px;
  border-left: 7px solid var(--fun-3);
  transition: box-shadow .16s, border-left-color .16s;
}
.review-teaser h3 {
  font-size: 1.18rem;
  margin-bottom: 6px;
}
.review-teaser:hover {
  border-left-color: var(--fun-1);
  box-shadow: 0 9px 38px 0 rgba(100, 180, 230, 0.09);
}
.review-teaser span {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  color: var(--fun-1);
}

.theme-board {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.theme-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 18px;
  min-width: 200px;
  flex: 1 1 220px;
  border-top: 7px solid var(--fun-4);
  margin-bottom: 20px;
  transition: box-shadow .15s, border-top-color .16s, transform .14s;
  font-size: 1rem;
}
.theme-item:hover {
  border-top-color: var(--fun-1);
  box-shadow: 0 12px 36px 0 rgba(90, 120, 210, 0.12);
  transform: scale(1.02) rotate(0.8deg);
}

.tip-category {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 18px;
  margin-bottom: 20px;
  min-width: 190px;
}
.tip-category h3 {
  color: var(--fun-2);
  font-size: 1.13rem;
  margin-bottom: 8px;
  font-family: 'Merriweather', serif;
}
.tip-category ul { margin-bottom: 0; }

/* ============================
        SERVICES OVERVIEW
==============================*/
.services-overview table {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.services-overview ul {
  margin-top: 22px;
  margin-bottom: 0px;
  font-size: 1.1em;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.services ul, .features ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.03em;
  margin: 0;
  padding: 0 0 0 16px;
}
.services li span { color: var(--fun-2); font-weight: 800; font-size: .96em; margin-left: 8px; }

/* ============================
      CONTACT SECTION
==============================*/
.contact-details {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px 18px 20px;
  min-width: 220px;
  margin-bottom: 20px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-details img { height: 22px; width: 22px; vertical-align: middle; margin-right: 7px; }
.contact-cta, .contact-hinweis {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #FFF9E6;
  border-radius: var(--radius);
  padding: 24px 18px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.map-placeholder {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  margin-bottom: 20px;
}

/* ============================
          LEGAL SECTION
==============================*/
.legal {
  background: #fff;
  padding: 38px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 45px;
}
.legal h1, .legal h2 { color: var(--primary); }

/* ============================
           FOOTER
==============================*/
footer {
  background: var(--primary);
  color: #fff;
  padding: 26px 0 20px 0;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  box-shadow: 0 -1px 12px 0 rgba(26,44,66,0.03);
  font-size: 1rem;
  letter-spacing: 0.2px;
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {flex-wrap: wrap; gap: 20px;}
footer nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
footer nav a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  padding: 4px 10px;
  margin-bottom: 5px;
  transition: background .13s;
}
footer nav a:hover, footer nav a:focus { background: var(--secondary); color: var(--primary);}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  font-size: .98em;
  opacity: .95;
}
.footer-branding img { height: 38px; }

/* ========================
    THANK-YOU, SPECIALS
=========================*/
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 15px;
}
.thank-you h1 { font-size: 2.5rem; }
.thank-you p { font-size: 1.1rem; }

/* ========================
       FILTER BAR
=========================*/
.filter-options {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff9e6;
  border-radius: var(--radius);
  padding: 12px 18px;
  margin-bottom: 18px;
  font-size: 1em;
  box-shadow: var(--shadow);
}
.filter-options ul {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.filter-options li {
  background: var(--fun-4);
  border-radius: 13px;
  padding: 6px 14px;
  font-weight: 600;
  color: var(--primary);
}

/* ========================
     BUTTONS COMMON
=========================*/
button, .button, input[type="submit"], input[type="button"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  border-radius: 18px;
  padding: 10px 22px;
  background: var(--fun-1);
  color: var(--primary);
  box-shadow: 0 3px 12px 0 rgba(250,120,100,.09);
  letter-spacing: 0.8px;
  margin-bottom: 0;
  transition: background .17s, color .14s, box-shadow .17s, transform .13s;
}
button:hover, .button:hover, button:focus, .button:focus, input[type="submit"]:hover, input[type="button"]:hover  {
  background: var(--fun-2);
  color: var(--primary);
  box-shadow: 0 7px 20px 0 rgba(95,216,196,0.14);
  transform: translateY(-2px) scale(1.035);
}

/* ============================
     COOKIE CONSENT BANNER
==============================*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffdea;
  color: #1a2c42;
  box-shadow: 0 -3px 28px 0 rgba(30,30,30,0.09);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 28px 22px 22px;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1.04rem;
  animation: bannerIn .6s cubic-bezier(.27,.71,.39,1.17);
}
@keyframes bannerIn {
  from { transform: translateY(50px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-size: 1em !important;
  min-width: 0;
  box-shadow: none;
  padding: 8px 20px;
  background: var(--fun-2);
  color: var(--primary);
  border-radius: 16px;
  font-weight: 800;
  transition: background .15s, color .13s, box-shadow .12s;
  margin-bottom: 0;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--fun-1);
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(255,121,103,0.13);
}
.cookie-banner .cookie-settings-btn {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 16px;
  border: 2px solid var(--fun-2);
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #fff;
  color: var(--fun-1);
  border-color: var(--fun-1);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 44, 66, 0.55);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: overlayIn .3s;
}
@keyframes overlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 13px 48px 0 rgba(90,72,50,0.14);
  max-width: 470px;
  width: 93vw;
  padding: 34px 34px 28px 34px;
  z-index: 4100;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalIn .35s cubic-bezier(.42,-0.29,.41,1.27);
  position: relative;
}
@keyframes modalIn {
  from { transform: scale(.7) translateY(40px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.3rem;
  color: var(--fun-1);
  margin-bottom: 7px;
  font-family: 'Merriweather', serif;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFF9E6;
  border-radius: 15px;
  padding: 11px 14px;
  margin-bottom: 10px;
  font-size: 1.03em;
  font-weight: 400;
}
.cookie-modal .cookie-toggle {
  width: 38px;
  height: 22px;
  background: #e2b96399;
  border-radius: 13px;
  position: relative;
  border: none;
  cursor: pointer;
  transition: background .2s;
  outline: none;
  margin-left: 8px;
}
.cookie-modal .cookie-toggle[data-active="true"] {
  background: var(--fun-2);
}
.cookie-modal .cookie-toggle .toggle-knob {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFF;
  position: absolute;
  top: 1px;
  left: 1px;
  transition: left .22s cubic-bezier(.59,.62,.63,1.12), background .15s;
  box-shadow: 0 1px 4px 0 rgba(90,72,50,0.11);
}
.cookie-modal .cookie-toggle[data-active="true"] .toggle-knob {
  left: 17px;
  background: var(--fun-1);
}
.cookie-modal .close-cookie-modal {
  background: none;
  color: var(--fun-1);
  border: none;
  font-size: 2.2rem;
  position: absolute;
  top: 10px;
  right: 18px;
  cursor: pointer;
  transition: color .15s;
}
.cookie-modal .close-cookie-modal:hover {
  color: var(--fun-2);
}
.cookie-modal .cookie-confirm-btn {
  background: var(--fun-1);
  color: #fff;
  font-weight: 800;
  border-radius: 15px;
  padding: 11px 0;
  margin-top: 14px;
}
.cookie-modal .cookie-confirm-btn:hover, .cookie-modal .cookie-confirm-btn:focus {
  background: var(--fun-2);
  color: var(--primary);
}

/* ========================
   MICRO-ANIMATIONS
=========================*/
.card, .feature-item, .theme-item, .testimonial-card, .review-teaser, .tip-category {
  animation: fadeInUp .6s cubic-bezier(.36,.78,.36,1) backwards;
}
@keyframes fadeInUp {
  from { transform: translateY(35px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cta-btn, button, .button { 
  transition: background .16s, color .16s, transform .17s, box-shadow .18s;
}

/* ========================
      MEDIA QUERIES
=========================*/
@media (max-width: 990px) {
  .feature-grid, .theme-board { flex-direction: column; }
}
@media (max-width: 860px) {
  .section { padding-left: 6vw; padding-right: 6vw; }
  .container { max-width: 98vw; }
  header .container { flex-direction: column; align-items: flex-start; gap: 8px; }
  nav { gap: 14px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section { padding: 34px 6vw; margin-bottom: 44px; }
  .container { padding-left: 7vw; padding-right: 7vw; }
  .hero { padding: 42px 0 34px 0; border-radius: 0 0 28px 28px; }
  .content-grid, .feature-grid, .theme-board, .card-container, .content-wrapper, .text-image-section {
    flex-direction: column !important;
    align-items: stretch;
    gap: 18px !important;
  }
  .card, .feature-item, .theme-item { min-width: 0 !important; }
  header nav, header .cta-btn { display: none; }
  .mobile-menu-toggle { display: flex !important; }
  footer .container { padding-left: 4vw; padding-right: 4vw; }
  .testimonial-card { font-size: 1em; }
}
@media (max-width: 500px) {
  html { font-size: 14px; }
  .section, .container { padding: 24px 3vw; }
  .hero { padding: 28px 0 20px 0; }
  h1 { font-size: 1.56rem; }
  h2 { font-size: 1.12rem; }
  .thank-you .content-wrapper { padding: 10px 1vw !important; }
}

/* ========================
     ACCESSIBILITY & PRINT
=========================*/
a:focus {
  outline: 2px dashed var(--fun-1);
  outline-offset: 3px;
}
button:focus, .button:focus {
  outline: 2px dotted var(--fun-3);
  outline-offset: 2px;
}
@media print {
  header, footer, .cookie-banner, .hero {display:none !important;}
}

/* ========================
        EXTRAS
=========================*/
::-webkit-scrollbar { width: 8px; background: #faeec7; }
::-webkit-scrollbar-thumb {
  background: #e2b963;
  border-radius: 7px;
}

/* PLAYFUL FONT HEADINGS */
h1, h2, .cta-btn, .feature-item h3, .theme-item h3, .tip-category h3, .cookie-modal h3 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1, h2 {
  background: linear-gradient(90deg, var(--fun-1), var(--primary));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradientText 7s ease-in-out infinite alternate;
}
@keyframes gradientText {
  0% { background-position: 0% }
  100% { background-position: 100% }
}

/* Fun extra: Slight wiggle on hover for playful headings/buttons */
.cta-btn:hover, .feature-item:hover h3, .theme-item:hover h3 {
  animation: wiggle .18s ease-in-out 1;
}
@keyframes wiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  50% { transform: rotate(-2.2deg) scale(1.03); }
  100% { transform: rotate(0deg); }
}

/* ========================
     FLEXBOX ONLY RULES
=========================*/
/* All main layout (see .section and above) strictly flexbox: no grid or columns */
/* No forbidden properties used, layouts verified for flex, gap spacing, and no absolute pos/content cards */
