/*---------------------------
  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,
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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F6F3FF;
  color: #22213a;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.6;
  position: relative;
  background-color: #F3F0E6;
}
img, picture, video, canvas, svg {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  color: #6e5b95;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A1AADB;
}
ul, ol {
  margin-bottom: 16px;
  list-style-position: inside;
}

/*---------------------------
  Typography
---------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  color: #2d2942;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
p, .text-section {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #39365b;
}
strong, b {
  font-weight: 700;
  color: #27243F;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  body {
    font-size: 15px;
  }
}

/*---------------------------
  Brand Palette (Soft Pastel)
---------------------------*/
:root {
  --primary: #27243F;
  --secondary: #D9B77C;
  --accent: #F3F0E6;
  --pastel-pink: #FCE8EC;
  --pastel-mint: #D7F5EF;
  --pastel-purple: #E9E5F6;
  --pastel-yellow: #FFF9DC;
  --pastel-lavender: #DED6F7;
  --soft-shadow: 0 4px 32px 0 rgba(80,70,148,0.06);
}

body {
  background: linear-gradient(135deg, #FCE8EC 0%, #DED6F7 80%, #D7F5EF 100%);
}

/*---------------------------
  Containers and Sections
---------------------------*/
.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 28px;
  background: rgba(255,255,255,0.8);
  box-shadow: var(--soft-shadow);
}
section.hero {
  background: linear-gradient(120deg, #FCE8EC 60%, #D7F5EF 100%);
  box-shadow: 0 8px 32px rgba(80,70,148,0.12);
  margin-bottom: 48px;
  position: relative;
}
section.hero .content-wrapper {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 18px;
  min-height: 300px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/*---------------------------
  Cards, Grids & Lists
---------------------------*/
.card-container, .feature-icons, .service-cards, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-container {
  margin-top: 24px;
}
.card {
  background: #FFF9DC;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(181,146,232,0.09);
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  transition: box-shadow .25s, transform .22s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(80,70,148,0.14);
  transform: translateY(-4px) scale(1.02);
}
.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-list {
  width: 100%;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 16px;
}
.testimonial-card {
  background: #E9E5F6;
  color: #23213B;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(99,51,142,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px 24px 20px 24px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow .22s, transform .18s;
  font-size: 1.1em;
}
.testimonial-card strong {
  display: block;
  margin-top: 12px;
  font-size: 0.95em;
  font-weight: 600;
  color: #705AA6;
}

ul.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}
ul.service-cards li {
  background: #FFF9DC;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(181,146,232,0.06);
  padding: 28px 22px 18px 22px;
  flex: 1 1 260px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow .22s;
}
ul.service-cards li:hover {
  box-shadow: 0 8px 32px rgba(139,123,180,0.16);
}
ul.service-cards .price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #947086;
  font-size: 1.05em;
  margin-top: 8px;
  font-weight: 500;
}

.feature-icons {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}
.feature-icons span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1em;
  background: #D7F5EF;
  color: #381850;
  border-radius: 100px;
  padding: 7px 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  box-shadow: 0 1px 6px rgba(181,146,232,0.05);
}

.features, .topics, .advisory, .privacy-policy,
.cookie-policy, .terms-of-use, .gdpr-compliance {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: #FFF9DC;
  box-shadow: var(--soft-shadow);
}
.features ul, .topics ul, .services-overview ul, .workshop-schedule ul, .advisory .contact-info ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.features ul li, .topics ul li, .services-overview ul li, .workshop-schedule ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1em;
  background: rgba(234, 224, 244, 0.34);
  border-radius: 13px;
  padding: 16px 20px;
  margin-bottom: 4px;
}
.features ul li img {
  width: 30px;
  height: 30px;
  margin-right: 8px;
}

/******* Section Short Contact ******/
.contact-short, .advisory {
  background: #D7F5EF;
  box-shadow: 0 6px 22px rgba(73,206,172,0.08);
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 36px 18px;
}
.contact-short .contact-box, .advisory .contact-info {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(121,146,232,0.06);
  padding: 18px 24px;
  margin-bottom: 20px;
}
.contact-short p, .advisory .contact-info p {
  margin: 0 0 10px 0;
}

/*---------------------------
  Header & Navigation
---------------------------*/
header {
  width: 100%;
  background: rgba(251,246,236,0.8);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px 20px 18px;
  position: relative;
  z-index: 10;
  border-radius: 0 0 26px 26px;
  box-shadow: 0 2px 12px 0 rgba(181,146,232,0.11);
}
.logo img {
  height: 42px;
}
.main-nav {
  display: flex;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02em;
  font-weight: 500;
  color: #705AA6;
  padding: 5px 13px;
  border-radius: 100px;
  transition: background 0.17s, color 0.19s;
}
.main-nav a:hover, .main-nav a.active {
  background: #E9E5F6;
  color: #2d2942;
}
.cta-button.primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(90deg, #D9B77C 60%, #FCE8EC 100%);
  color: #27243F;
  font-weight: 700;
  padding: 10px 32px;
  border-radius: 40px;
  font-size: 1.1em;
  letter-spacing: 0.01em;
  outline: none;
  border: none;
  margin-left: 18px;
  margin-top: 0;
  transition: background .22s, box-shadow .18s, color .17s;
  box-shadow: 0 2px 8px rgba(217,183,124,0.08);
  cursor: pointer;
  display: inline-block;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: linear-gradient(90deg, #E9E5F6 40%, #FCE8EC 100%);
  color: #39365b;
  box-shadow: 0 8px 24px #d9b77c25;
}

/*---------------------------
  Footer
---------------------------*/
footer {
  margin-top: 40px;
  background: rgba(234,224,244,0.40);
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -1px 14px 0 rgba(181,146,232,0.08);
  padding: 32px 16px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: #705AA6;
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.88;
  transition: color 0.18s, opacity 0.17s;
}
.footer-nav a:hover {
  color: #27243F;
  opacity: 1;
}
.footer-branding {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-direction: column;
  margin-top: 8px;
}
.footer-branding img {
  height: 36px;
  opacity: 0.8;
  margin-bottom: 5px;
}
.footer-branding p {
  color: #463050;
  font-size: 0.99em;
  opacity: 0.84;
}

/*---------------------------
  Buttons & Misc Links
---------------------------*/
button, .cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
}
button {
  border: none;
  outline: none;
  background: none;
  color: inherit;
}
.cta-button.secondary {
  background: #E9E5F6;
  color: #27243F;
  padding: 10px 26px;
  border-radius: 28px;
  font-weight: 600;
  transition: background .17s, color .14s;
  box-shadow: 0 1px 4px rgba(181,146,232,0.06);
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: #FCE8EC;
}

/*---------------------------
  Mobile Navigation
---------------------------*/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 16px;
  top: 21px;
  z-index: 120;
  width: 42px;
  height: 42px;
  border: none;
  background: #DED6F7;
  color: #46406b;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 2px 10px #b892e81a;
  transition: background 0.17s, color 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #D9B77C;
  color: #fff;
  outline: 0;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #FCE8EC 80%, #DED6F7 100%);
  z-index: 200;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.7,0.25,0.3,1), opacity 0.21s;
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: #27243F;
  background: #D7F5EF;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin: 18px 0 4px 20px;
  align-self: flex-start;
  box-shadow: 0 2px 12px #b892e830;
  transition: background 0.13s, color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #D9B77C;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin: 24px 0 0 26px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #705AA6;
  font-size: 1.26em;
  padding: 10px 0 10px 4px;
  border-radius: 12px;
  transition: background .18s, color .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F3F0E6;
  color: #27243F;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 14px;
  }
  .container {
    max-width: 92vw;
  }
}
@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 11px 12px 15px 11px;
  }
  .main-nav {
    gap: 7px;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .main-nav, .cta-button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .container {
    max-width: 99vw;
    padding: 0 5vw;
  }
  .section, section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .footer-nav {
    gap: 12px;
  }
  .feature-icons {
    gap: 9px;
    font-size: 0.97em;
  }
  .card-container, .testimonial-list, ul.service-cards {
    gap: 12px;
  }
  ul.service-cards li {
    padding: 18px 10px 15px 10px;
    min-width: 90vw;
    flex: 1 1 100%;
  }
}
@media (max-width: 600px) {
  .testimonial-card, .card {
    padding: 16px 10px 14px 10px;
    min-width: 80vw;
  }
  .testimonial-list, .card-container, ul.service-cards {
    flex-direction: column;
    gap: 8px;
  }
  .feature-icons {
    flex-direction: column;
    gap: 8px;
  }
  .contact-box, .advisory .contact-info {
    padding: 10px 6px;
  }
  section.hero .content-wrapper {
    padding: 10px 2vw;
    min-height: 210px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/*---------------------------
  Visual Details & Animations
---------------------------*/
.card, .testimonial-card, ul.service-cards li {
  transition: box-shadow .22s, transform .18s;
}
.cta-button, .cta-button.primary, .cta-button.secondary {
  transition: background .22s, color .15s, box-shadow .18s, transform .14s;
}

/*---------------------------
  Forms (Kontakt)
---------------------------*/
.contact-form-section ul {
  list-style-type: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}
.contact-form-section ul li {
  padding: 4px 0;
  font-size: 1em;
}
.text-section {
  margin-bottom: 12px;
}

/*---------------------------
  Cookie Consent Banner & Modal
---------------------------*/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #FFF9DC 70%, #E9E5F6 100%);
  color: #27243F;
  z-index: 9999;
  box-shadow: 0 -2px 22px 0 rgba(139,123,180,0.10);
  padding: 20px max(3vw,14px) 22px max(3vw,14px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 1.05em;
  transition: transform 0.32s, opacity 0.2s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  min-width: 120px;
  font-size: 0.98em;
  border-radius: 24px;
  padding: 8px 19px;
  border: none;
  outline: none;
  font-weight: 600;
  transition: background .18s, color .13s, box-shadow .13s;
  cursor: pointer;
}
.cookie-consent-banner .cookie-accept {
  background: #D9B77C;
  color: #27243F;
}
.cookie-consent-banner .cookie-accept:hover, .cookie-consent-banner .cookie-accept:focus {
  background: #E9E5F6;
  color: #6e5b95;
}
.cookie-consent-banner .cookie-reject {
  background: #FCE8EC;
  color: #706C7A;
}
.cookie-consent-banner .cookie-reject:hover, .cookie-consent-banner .cookie-reject:focus {
  background: #D9B77C;
  color: #fff;
}
.cookie-consent-banner .cookie-settings {
  background: #DED6F7;
  color: #313356;
}
.cookie-consent-banner .cookie-settings:hover, .cookie-consent-banner .cookie-settings:focus {
  background: #D7F5EF;
}

/* Cookie modal popup */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10000;
  inset: 0;
  background: rgba(39,36,63,0.47);
  align-items: center;
  justify-content: center;
  transition: opacity 0.21s;
}
.cookie-modal-overlay.open {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #FFF9DC;
  border-radius: 21px;
  box-shadow: 0 10px 36px rgba(99,51,142,0.17);
  max-width: 420px;
  width: 95vw;
  padding: 32px 26px 24px 28px;
  color: #22213a;
  font-size: 1.03em;
  animation: cookieFadeIn .4s cubic-bezier(.47,1.64,.41,.8);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.24em;
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #D9B77C;
  width: 21px;
  height: 21px;
  border-radius: 5px;
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-save {
  background: #D9B77C;
  color: #27243F;
  border-radius: 22px;
  padding: 7px 18px;
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  margin-left: 0;
}
.cookie-modal .cookie-modal-cancel {
  background: #FCE8EC;
  color: #706C7A;
  border-radius: 22px;
  padding: 7px 18px;
  font-size: 1em;
  border: none;
}
.cookie-modal .cookie-modal-save:hover, .cookie-modal .cookie-modal-save:focus {
  background: #E9E5F6;
  color: #6e5b95;
}
.cookie-modal .cookie-modal-cancel:hover, .cookie-modal .cookie-modal-cancel:focus {
  background: #D9B77C;
  color: #fff;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 14px;
  right: 17px;
  width: 30px;
  height: 30px;
  font-size: 1.35em;
  background: none;
  border: none;
  color: #27243F;
  border-radius: 50%;
  transition: background .13s, color .13s;
}
.cookie-modal .close-cookie-modal:hover {
  background: #D9B77C;
  color: #fff;
}

@keyframes cookieFadeIn {
  0% { opacity: 0; transform: scale(.92); }
  100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 550px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 10px;
    font-size: 0.98em;
    align-items: flex-start;
    padding: 14px 10px 18px 10px;
  }
  .cookie-modal {
    padding: 17px 6vw 10px 7vw;
    max-width: 99vw;
  }
}

/***** Util Classes *****/
.text-center, .center {
  text-align: center;
}
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }

/***** Spacing & Gaps (Critical Alignment) *****/
.section, section, .features, .content-wrapper, .card-container, .card, .testimonial-list, .testimonial-card, .feature-icons, .content-grid, .service-cards, ul.service-cards li {
  margin-bottom: 20px;
}
.section, section, .features, .content-wrapper, .card-container, .content-grid, .testimonial-list, .feature-icons, .service-cards, ul.service-cards li {
  gap: 20px;
}

/***** Accessibility: Focus Ring *****/
:focus {
  outline: 2px dashed #9470E2;
  outline-offset: 2px;
}

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

/***** Miscellaneous Fixes for Aesthetic Cohesion *****/
::-webkit-input-placeholder, ::placeholder {
  color: #bfaee4;
  opacity: 1;
}

/***** Dreamy Decorative Shadow on Some Pastel Cards *****/
.card, .testimonial-card, ul.service-cards li {
  box-shadow: 0 4px 32px 0 rgba(181,146,232,0.08), 0 1.2px 2.8px 0 rgba(90,157,161,0.04);
}

/***** Prevent Absolute Position on Content Cards *****/
.card, .testimonial-card, ul.service-cards li {
  position: relative!important;
}
