/* =========================================================
   RESET & BASE
   ========================================================= */
html {box-sizing: border-box;}
*, *:before, *:after {box-sizing: inherit; margin: 0; padding: 0;}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #F6F8FB;
  color: #25313A;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #4F7BA3;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.55,.06,.68,.19);
}
a:hover, a:focus { color: #ff7594; text-decoration: underline;}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li { margin-bottom: 7px; }
::-webkit-input-placeholder { color: #7895ad; opacity: 1; }
:-moz-placeholder { color: #7895ad; opacity: 1; }
::-moz-placeholder { color: #7895ad; opacity: 1; }
:-ms-input-placeholder { color: #7895ad; opacity: 1; }
input, textarea {
  border: 1.5px solid #D0D8EB;
  border-radius: 10px;
  font-size: 16px;
  padding: 10px 14px;
  outline: none;
  transition: border 0.2s;
  font-family: 'Roboto', Arial, sans-serif;
  background: white;
}
input:focus, textarea:focus { border-color: #4F7BA3;}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fun-bounce {
  0% { transform: translateY(0); }
  25% { transform: translateY(-6px); }
  50% { transform: translateY(0); }
  75% { transform: translateY(3px); }
  100% { transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   COLOR PALETTE & CUSTOM PROPERTIES
   ========================================================= */
:root {
  --brand-primary: #25313A;
  --brand-secondary: #4F7BA3;
  --brand-accent: #F6F8FB;
  --brand-playful-1: #ff7594; /* Playful pink */
  --brand-playful-2: #ffe36e; /* Playful yellow */
  --brand-playful-3: #76e7e1; /* Playful teal */
  --brand-playful-4: #ffd16e; /* Playful orange/yellow */
  --brand-white: #fff;
  --shadow-main: 0 6px 32px -8px rgba(79, 123, 163, 0.14);
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: bold;
  color: var(--brand-primary);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; line-height: 1.15; margin-bottom: 22px; }
h2 { font-size: 1.6rem; margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 11px; }
h4 { font-size: 1rem; margin-bottom: 7px; }
p, .text-section, .content-wrapper p, .feature-item p {
  color: #334254;
  margin-bottom: 13px;
}
strong, b {color: var(--brand-primary); font-weight: bold;}

/* Fun font accents for playful style */
h1, h2, .testimonial-card strong, .cta-btn, .logo, .logo-footer {
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 800;
}

/* =========================================================
   COMMON UTILITY CLASSES
   ========================================================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-accent);
  border-radius: 30px;
  box-shadow: var(--shadow-main);
}
.container {
  width: 100%;
  max-width: 1164px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper { width: 100%; display: flex; flex-direction: column; gap: 16px;}
.text-section { margin-bottom: 20px; gap: 12px; }

/* Flexbox patterns forced by requirements */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: var(--brand-white); box-shadow: var(--shadow-main); border-radius: 20px; transition: transform 0.14s; }
.card:hover { transform: translateY(-5px) scale(1.035); }
.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: var(--brand-white); border-radius: 24px; margin-bottom: 22px; box-shadow: 0 1.5px 12px 0 rgba(37,49,58,0.04); color: #25313A; min-height: 84px; transition: box-shadow 0.18s; border-left: 6px solid var(--brand-playful-1);}
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Add animations to cards */
.card, .testimonial-card, .feature-item, .service-cards > div, .workshop-entry, .news-entry, .review-entry {
  animation: fade-in 0.9s cubic-bezier(0.26,0.86,0.44,0.985) both;
  animation-delay: 0.16s;
}

/* =========================================================
   HEADER & MAIN NAVIGATION
   ========================================================= */
header {
  background: var(--brand-white);
  box-shadow: 0 2px 12px -7px rgba(44,69,123,.10);
  z-index: 50;
  position: relative;
}
header .container { flex-direction: row; align-items: center; justify-content: space-between; min-height: 70px; }
.logo img { height: 42px; width: auto; }
.logo { display: flex; align-items: center; margin-right: 20px; font-size: 2rem; text-shadow: 2px 2px 0 #ffe36e; }
.main-nav {
  display: flex;
  gap: 25px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  margin: 0 14px 0 0;
}
.main-nav a {
  color: var(--brand-secondary);
  padding: 6px 2px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a::before {
  content: '';
  display: block;
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--brand-playful-2);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--brand-playful-1);
  background: #F6EDF6;
}
.main-nav a:hover::before, .main-nav a:focus::before {
  transform: scaleX(1);
}
.cta-btn {
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-size: 1.05rem;
  font-weight: bold;
  background: var(--brand-playful-1);
  color: #fff;
  padding: 13px 28px;
  border: none;
  border-radius: 38px;
  letter-spacing: 0.06em;
  box-shadow: 0 3px 24px 0 rgba(255,117,148,0.09);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  position: relative;
  margin-left: 16px;
  display: inline-block;
  outline: none;
  animation: fun-bounce 2.2s infinite;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-playful-2);
  color: var(--brand-primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 7px 18px 0 rgba(255,227,110,0.15);
}
.cta-btn.small {
  padding: 8px 18px;
  font-size: 0.96rem;
  margin-left: 0;
}

/* Hamburger button for mobile */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-playful-1);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  padding: 6px 19px 10px 19px;
  box-shadow: 0 2px 12px 0 rgba(255,117,148,0.09);
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 99;
  cursor: pointer;
  transition: background 0.15s, transform 0.12s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--brand-playful-2);
  color: var(--brand-primary);
}

/* =========================================================
   MOBILE MENU
   ========================================================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(246,248,251,0.98);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.39s cubic-bezier(.86,0,.07,1);
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 25px 24px 24px 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--brand-playful-1);
  color: #fff;
  border: none;
  font-size: 2.1rem;
  border-radius: 50%;
  padding: 4px 16px 6px 16px;
  margin-bottom: 32px;
  align-self: flex-end;
  cursor: pointer;
  box-shadow: 0 3px 18px 0 rgba(255,117,148,0.11);
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { background: var(--brand-playful-2); color: var(--brand-primary);}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 22px;
}
.mobile-nav a {
  color: var(--brand-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  padding: 10px 6px;
  border-radius: 12px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-playful-3);
  color: var(--brand-primary);
}

/* Mobile nav touch highlight */
@media (hover: none) {
  .mobile-nav a:active { background: var(--brand-playful-2); color: var(--brand-primary); }
}

/* Hide main nav on mobile, show burger */
@media (max-width: 1024px) {
  .main-nav, .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
  header .container { justify-content: flex-start; }
}

/* =========================================================
   HERO SECTIONS
   ========================================================= */
.hero, .kontakt-hero, .confirmation-section {
  background: linear-gradient(130deg,#ffe36e 0%, #76e7e1 31%, #ffd16e 80%, #ff7594 100%);
  border-radius: 0 0 34px 34px;
  padding: 50px 0 40px 0;
  margin-bottom: 44px;
  min-height: 260px;
  display: flex;
  align-items: center;
  box-shadow: 0 13px 60px 0 rgba(55,133,150,0.10);
  animation: fade-in 1.3s;
}
.hero .content-wrapper, .kontakt-hero .content-wrapper, .confirmation-section .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
.hero h1, .kontakt-hero h1, .confirmation-section h1 {
  font-size: 2.5rem;
  color: var(--brand-primary);
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 900;
  text-shadow: 1.5px 2px 0 #ffe36e;
}
.hero p, .kontakt-hero p, .confirmation-section p {
  font-size: 1.18rem;
  color: #26334A;
}

/* =========================================================
   FEATURES & SERVICES
   ========================================================= */
.features {
  background: var(--brand-accent);
  border-radius: 40px;
  padding: 40px 20px 32px 20px;
  box-shadow: var(--shadow-main);
  margin-bottom: 60px;
}
.features h2 { font-size: 2rem;  }
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #fff;
  flex: 1 1 195px;
  min-width: 195px;
  max-width: 272px;
  padding: 28px 20px;
  border-radius: 24px;
  box-shadow: 0 1.5px 12px 0 rgba(37,49,58,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.13s, box-shadow 0.15s;
  border-left: 7px solid var(--brand-playful-3);
  position: relative;
}
.feature-grid > div:hover {
  transform: translateY(-5px) scale(1.025) rotate(-2deg);
  box-shadow: 0 7px 22px 0 rgba(118,231,225,0.14);
}
.feature-grid img {
  margin-bottom: 11px;
  height: 38px;
  animation: fun-bounce 2.7s infinite cubic-bezier(.89,0,.11,1);
}
.features h3 { color: var(--brand-playful-1); font-size: 1.22rem; margin-bottom: 8px;}

.services {
  background: transparent;
  box-shadow: none;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 18px;
}
.service-cards > div {
  background: #fff;
  flex: 1 1 200px;
  max-width: 268px;
  min-width: 190px;
  border-radius: 28px;
  box-shadow: 0 2px 18px 0 rgba(255,227,110,0.10);
  padding: 23px 19px 25px 19px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  position: relative;
  border-bottom: 6px solid var(--brand-playful-2);
  transition: box-shadow 0.19s, transform 0.16s;
}
.service-cards > div:hover {
  box-shadow: 0 11px 28px 0 rgba(255,117,148,0.13);
  transform: scale(1.03) rotate(1.5deg);
}
.service-cards h3 { font-size: 1.11rem; color: var(--brand-playful-1); margin-bottom: 6px;}
.service-price {
  background: var(--brand-playful-4);
  color: var(--brand-primary);
  border-radius: 14px;
  font-size: 1.1rem;
  padding: 4px 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 18px 0 rgba(255,209,110,0.13);
}
.service-cta {
  display: inline-block;
  align-self: flex-end;
  min-width: 40%;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { margin-bottom: 64px; }
.testimonials h2 { font-size: 1.7rem; margin-bottom: 18px;}
.testimonial-card {
  min-width: 250px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 18px 0 rgba(255,117,148,0.10);
  padding: 32px 28px;
  color: #25313A;
  font-size: 1.1rem;
  margin-bottom: 24px;
  border-left: 7px solid var(--brand-playful-1);
  transition: box-shadow 0.15s, transform 0.14s;
}
.testimonial-card strong {
  color: var(--brand-playful-3);
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-size: 1.05em;
  font-weight: 900;
  margin-top: 12px;
  letter-spacing: 0.02em;
}
.testimonial-card:hover {
  box-shadow: 0 10px 24px 0 rgba(79,123,163,0.08);
  transform: translateY(-4px) scale(1.03) rotate(-0.7deg);
}

/* =========================================================
   SIMPLE FLEX CARDS, ENTRIES, NEWS
   ========================================================= */
.review-entry, .news-entry, .workshop-entry {
  background: #fff;
  border-radius: 24px;
  margin-bottom: 22px;
  box-shadow: 0 1.5px 12px 0 rgba(37,49,58,0.04);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 5px solid var(--brand-playful-2);
  position: relative;
}
.review-entry h3, .news-entry h3, .workshop-entry h3 {color:var(--brand-playful-1); margin-bottom: 7px; font-size: 1.12rem;}
.review-rating, .news-date {
  color: var(--brand-secondary);
  font-size: 0.97rem;
  font-weight: bold;
}

.news-list, .workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.news-list > .news-entry, .workshop-list > .workshop-entry {
  flex: 1 1 300px;
  min-width: 210px;
  max-width: 360px;
}

/* Newsletter Signup */
.newsletter-signup {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.newsletter-signup input[type='email'] {
  width: 220px;
  font-size: 1rem;
}

/* =========================================================
   CALLOUT, SHORT CONTACT, CTA BAR
   ========================================================= */
.callout-section, .cta-bar {
  padding: 32px 18px;
  background: var(--brand-playful-3);
  border-radius: 28px;
  margin-bottom: 55px;
  text-align: center;
  box-shadow: 0 1.5px 15px 0 rgba(118,231,225,0.10);
}
.callout-section .cta-btn, .cta-bar .cta-btn {
  margin-top: 18px;
  animation: none;
  background: var(--brand-playful-2);
  color: var(--brand-primary);
  box-shadow: 0 3px 18px 0 rgba(255,227,110,0.14);
}
.callout-section .cta-btn:hover, .cta-bar .cta-btn:hover {
  background: var(--brand-playful-1); color: #fff;
}
.short-contact .quick-contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 17px;
}
.short-contact .quick-contact-details img { height: 22px; margin-right: 8px; vertical-align: middle;}

/* =========================================================
   FORMS, FILTERS, TABLES
   ========================================================= */
.filter-section .filter-options ul {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 11px;
}
.filter-section .filter-options li {
  display: inline-block; font-size: 1rem;
  color: var(--brand-playful-1);
  background: var(--brand-playful-3);
  border-radius: 10px;
  padding: 5px 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
.search-bar {
  display: flex; flex-direction: row; gap: 10px; align-items: center; margin-bottom: 13px;
}
.search-bar label {font-weight: bold; color: var(--brand-secondary); font-size: 1rem;}
.search-bar input[type='text'] { width: 180px; }

.table-overview {
  margin-top: 18px;
  overflow-x: auto;
}
.comparison-filters {margin-bottom: 11px;}
table {
  width: 100%;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border-collapse: collapse;
  margin-bottom: 18px;
  box-shadow: 0 2px 14px 0 rgba(37,49,58,0.06);
}
th, td {
  padding: 13px 9px;
  text-align: left;
  font-size: 0.98rem;
}
th { background: var(--brand-secondary); color:#fff; font-family:'Montserrat',Arial,sans-serif; }
td { border-bottom: 1.5px solid #F6F8FB;}
tr:last-child td { border-bottom: none; }

/* =========================================================
   ABOUT, LEGAL, CONTACT PAGES
   ========================================================= */
.about-section, .team-section, .legal-section, .contact-info, .standort-section {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow-main);
  margin-bottom: 60px;
  padding: 38px 20px;
}
.text-section ul {margin-bottom: 0; list-style: disc outside;}
.text-section li {margin-bottom: 5px;}
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0 0 16px 0;
  padding-left: 0;
  list-style: none;
}
.contact-info li {display: flex; align-items: center; gap: 7px; font-size: 1.08em;}
.contact-info img {height: 25px; width: 25px;}
.standort-section img {height: 22px; margin-right: 7px;}

/* Legal text blocks */
.legal-section .text-section {
  background: var(--brand-accent);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 0;
}

/* Thank you, confirmation */
.confirmation-section { text-align: center; min-height: 300px; }
.confirmation-section h1 { margin-bottom: 16px; }
.confirmation-section p { margin-bottom: 24px; }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #25313A;
  color: #fff;
  padding: 40px 0 18px 0;
  margin-top: 60px;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -5px 40px 0 rgba(37,49,58,0.07);
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
}
.logo-footer img {
  height: 38px;
  margin-right: 10px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #ffe36e;
  font-weight: bold;
  font-size: 0.96em;
  padding: 3px 7px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #ffe36e;
  color: #25313a;
}
footer p {font-size: 0.96em; color: #ffd16e; margin-top: 24px;}

/* =========================================================
   COOKIE CONSENT BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #fffbe6;
  color: #25313A;
  padding: 25px 12px 22px 12px;
  box-shadow: 0 -3px 22px 0 rgba(255,227,110,0.16);
  border-radius: 18px 18px 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  z-index: 50000;
  animation: fade-in 0.78s;
}
.cookie-banner .cookie-text {
  flex: 2 1 250px;
  font-size: 1.04rem;
}
.cookie-banner .cookie-actions {
  flex: 1 1 180px;
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  background: var(--brand-playful-2);
  color: #25313a;
  font-weight: bold;
  border: none;
  border-radius: 19px;
  padding: 9px 19px;
  margin: 0 0 0 4px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, transform 0.12s;
  box-shadow: 0 2px 13px 0 rgba(255,227,110,.09);
}
.cookie-btn.accept {
  background: var(--brand-playful-1);
  color: #fff;
}
.cookie-btn.reject {
  background: #ccc;
  color: #25313a;
}
.cookie-btn.settings { background: var(--brand-playful-3); color: #25313a; }
.cookie-btn:hover, .cookie-btn:focus { background: var(--brand-playful-4); color: #25313a; transform: translateY(-2px) scale(1.05);}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(37,49,58,0.22);
  z-index: 50500;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fade-in 0.4s;
}
.cookie-modal {
  background: #fff;
  padding: 36px 28px 28px 28px;
  border-radius: 28px;
  box-shadow: 0 7px 33px 0 rgba(79,123,163,0.17);
  max-width: 390px;
  width: 95%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  color: var(--brand-playful-1);
  margin-bottom: 5px;
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-size: 1.21rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 19px;
  background: var(--brand-accent);
  border-radius: 12px;
  padding: 14px 19px;
  font-size: 1.04em;
}
.cookie-modal .cookie-category.toggle input[type='checkbox'] {
  accent-color: var(--brand-playful-1);
  width: 22px; height: 22px;
}
.cookie-modal .cookie-category.essential label {
  color: #25313A;
  font-weight: 700;
}
.cookie-modal .cookie-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 12px; top: 10px;
  font-size: 1.5rem;
  background: none;
  color: #25313A;
  border: none;
  cursor: pointer;
  transition: color 0.11s;
}
.cookie-modal .close-modal:hover { color: var(--brand-playful-1);}

/* =========================================================
   RESPONSIVE DESIGN (MOBILE FIRST)
   ========================================================= */
@media (max-width: 1024px) {
  .container, footer .container { flex-direction: column; gap: 0; align-items: flex-start; }
  .footer-nav { margin: 12px 0; }
  .main-nav { gap: 18px; }
  .service-cards, .feature-grid, .content-grid, .card-container, .news-list, .workshop-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .container, footer .container { padding-left: 7px; padding-right: 7px; }
  header .container { flex-direction: row; align-items: center; justify-content: space-between; padding: 0 7px; }
  .main-nav, .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; position: absolute; right: 7px; top: 12px; }
  .features, .about-section, .team-section, .legal-section, .contact-info, .standort-section, .section, .callout-section, .cta-bar, .services {
    padding: 22px 5px;
    border-radius: 16px;
    box-shadow: var(--shadow-main);
  }
  .hero, .kontakt-hero, .confirmation-section {
    padding: 33px 0 28px 0;
    border-radius: 0 0 22px 22px;
    min-height: 170px;
  }
  .feature-grid, .service-cards, .news-list, .workshop-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .feature-grid > div, .service-cards > div, .news-list>.news-entry, .workshop-list>.workshop-entry {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .testimonial-card, .review-entry, .news-entry, .workshop-entry { padding: 17px 11px; }
  .section { margin-bottom: 36px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 17px 5px 12px 7px; }
  .cookie-banner .cookie-actions { flex-direction: row; gap: 9px; margin-left: 0; }
  .newsletter-signup { flex-direction: column; align-items: stretch; gap: 8px; }
}
@media (max-width: 500px) {
  h1 {font-size: 1.47rem;}
  h2 {font-size: 1.17rem;}
  .hero h1, .kontakt-hero h1, .confirmation-section h1 { font-size: 1.17rem; }
  footer .container, .container { padding-left: 3px; padding-right: 3px; }
  .logo img, .logo-footer img { height: 27px; }
  .testimonial-card { padding: 12px 6px; font-size: 1.01rem; }
}
/* Ensure text-image layouts stack properly on mobile */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* Remove absolute positioning for content regions, only use for decorations if needed */

/* =========================================================
   SHADOWS & FUN PLAYFUL DECOR
   ========================================================= */
.card, .testimonial-card, .feature-grid > div, .review-entry, .news-entry, .workshop-entry, .service-cards > div {
  box-shadow: 0 3px 18px 0 rgba(118,231,225,0.10), 0 1.5px 12px 0 rgba(37,49,58,0.09);
}

/* Fun hover effect for cards */
.card:hover, .feature-grid > div:hover, .service-cards > div:hover,
.review-entry:hover, .workshop-entry:hover, .news-entry:hover {
  transform: translateY(-8px) scale(1.035) rotate(-1deg);
  box-shadow: 0 13px 26px rgba(255,117,148,0.13), 0 2.5px 5px 0 rgba(255,227,110,0.09);
}

/* =========================================================
   ACCESSIBILITY & MISC
   ========================================================= */
:focus {
  outline: 2px dashed var(--brand-playful-1);
  outline-offset: 2px;
}
button:focus { box-shadow: 0 0 0 2px var(--brand-playful-1),0 1.5px 12px 0 rgba(37,49,58,0.06);}

/* Proper spacing for all key elements */
.section, .card, .testimonial-card, .feature-grid > div, .service-cards > div, .review-entry, .news-entry, .workshop-entry, .callout-section, .cta-bar, .short-contact, .legal-section, .about-section, .team-section, .contact-info, .standort-section {
  margin-bottom: 24px;
}
.card, .testimonial-card, .feature-grid > div, .service-cards > div, .review-entry, .news-entry, .workshop-entry { margin-right: 0; }

/* Ensure no content overlap or crowding */
.card-container, .card, .testimonial-card, .feature-grid, .service-cards, .news-list, .workshop-list,
.content-grid, .text-image-section, .short-contact .quick-contact-details, .newsletter-signup {
  gap: 20px;
}

/* ======================== END ====================== */
