/* --- CSS RESET & BASE --- */
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, 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 {scroll-behavior: smooth;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #EEF2F6;
  color: #222B45;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #F3B505;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #222B45;
}

/* --- BRANDING & TYPOGRAPHY --- */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Oswald:600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Arial Black', Arial, sans-serif;
  color: #222B45;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.6rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.1rem; }
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  color: #222B45;
  margin-bottom: 15px;
  font-weight: 400;
}
p, ul, ol { margin-bottom: 16px; }
ul, ol { margin-left: 24px; }
strong, b { font-weight: 700; }

/* --- CREATIVE_ARTISTIC STYLE COLORS --- */
:root {
  --color-primary: #222B45;
  --color-secondary: #F3B505;
  --color-accent: #EEF2F6;
  --color-card-bg: #fff;
  --color-art-blue: #36BED4;
  --color-art-magenta: #DB3C99;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- FLEXBOX LAYOUTS & SPACING --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 1px rgba(36,43,69,0.10);
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 6px 20px rgba(251,123,97,0.16), 0 1.5px 3px rgba(34,43,69,0.06); transform: translateY(-3px); }

.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: 20px 28px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(36,43,69,0.13);
  border-left: 4px solid var(--color-art-magenta);
  transition: transform 0.19s, box-shadow 0.25s;
}
.testimonial-card:hover { box-shadow: 0 6px 22px rgba(54,190,212,0.13), 0 3px 6px rgba(35,43,69,0.07); transform: translateY(-2px) scale(1.022); }
.testimonial-meta { color: var(--color-primary); font-weight: 700; font-size: 1rem; margin-top: 2px; letter-spacing:0.3px; }

.feature-item, .usp-item, .vorteil-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  padding: 26px 22px 20px;
  box-shadow: 0 2px 10px 1px rgba(36,43,69,0.09);
  min-width: 210px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  position: relative;
  border-top: 4px solid var(--color-art-blue);
  transition: box-shadow 0.22s, border-top 0.24s;
}
.feature-item:hover, .usp-item:hover, .vorteil-item:hover {
  box-shadow: 0 7px 26px 0 rgba(219,60,153,0.10), 0 3px 12px rgba(34,43,69,0.04);
  border-top: 4px solid var(--color-art-magenta);
}
.feature-item img, .usp-item img, .vorteil-item img {
  height: 42px;
  width: 42px;
  margin-bottom: 7px;
  object-fit: contain;
}


/* --- HERO --- */
.hero {
  padding: 80px 0 46px 0;
  background: linear-gradient(110deg, #F3B505 0%, #DB3C99 60%, #36BED4 100%);
  color: #fff;
  box-shadow: 0 10px 35px -10px rgba(54,190,212,.14);
  position: relative;
}
.hero h1, .hero .subheadline {
  color: #fff;
  text-shadow: 0 1px 18px rgba(34,43,69,0.10);
}

.hero .btn-primary {
  margin-top: 23px;
}

/* --- NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 4px 16px -7px rgba(36,43,69,0.09);
  position: relative;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: flex-start;
  padding: 18px 20px 18px 20px;
}
.main-nav img {
  height: 38px;
  margin-right: 8px;
  margin-left: 2px;
}
.main-nav a {
  font-family: 'Oswald', Arial Black, Arial, sans-serif;
  font-size: 1rem;
  color: #222B45;
  padding: 8px 10px;
  letter-spacing: 0.2px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a.btn-primary {
  font-family: inherit;
  margin-left: auto;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-art-blue);
  color: #fff;
}
.main-nav .btn-primary {
  font-family: 'Oswald', Arial Black, Arial, sans-serif;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Oswald',Arial Black,Arial,sans-serif;
  background: #F3B505;
  color: #222B45;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  padding: 13px 33px;
  border-radius: 22px;
  box-shadow: 0 2px 8px 0 rgba(251,123,97,0.09);
  margin-top: 10px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background 0.18s, color 0.18s, transform 0.15s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-art-magenta);
  color: #fff;
  transform: scale(1.03);
}

.btn-secondary {
  background: var(--color-art-blue);
  color: #fff;
  margin-left: 0;
  margin-right: 0;
  font-size: 1rem;
  padding: 10px 25px;
  border-radius: 14px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-art-magenta);
  color: #fff;
}

/* --- MOBILE NAV --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 18px;
  z-index: 100;
  background: var(--color-secondary);
  color: #222B45;
  border: none;
  font-size: 2rem;
  padding: 9px 19px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .24s, color .19s;
  box-shadow: 0 1.5px 6px rgba(36,43,69,0.14);
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #F3B505 0%, #36BED4 100%);
  z-index: 9999;
  transform: translateX(105vw);
  transition: transform .36s cubic-bezier(.68,-0.4,.32,1.4);
  box-shadow: 0 0 88px 0 rgba(34,43,69,0.25);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #222B45;
  font-size: 2.6rem;
  padding: 20px 25px 10px 0;
  cursor: pointer;
  transition: color 0.14s;
}
.mobile-menu-close:hover { color: #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  padding: 36px 34px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial Black, Arial, sans-serif;
  font-size: 1.15rem;
  color: #222B45;
  background: rgba(255,255,255,0.15);
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 2px;
  width: 95vw;
  max-width: 390px;
  transition: background 0.23s, color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff;
  color: #DB3C99;
}

/* --- SECTION/CARD & FLEXBOX GRIDS --- */
.feature-grid, .angebot-grid, .mitgliedschaft-vorteile-grid, .usps-grid, .angebot-list, .team-list, .courses {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
  justify-content: flex-start;
}

.angebot-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 11px 0 rgba(54,190,212,0.08);
  padding: 28px 24px 26px 24px;
  flex: 1 1 240px;
  min-width: 240px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.16s;
  border-left: 4px solid var(--color-secondary);
}
.angebot-card:hover {
  box-shadow: 0 10px 40px 0 rgba(254,212,50,0.08);
  border-left: 4px solid var(--color-art-blue);
  transform: translateY(-4px);
}

.team-list {
  gap: 20px;
  margin: 30px 0 0 0;
}
.team-member {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 9px rgba(36,43,69,0.09);
  padding: 24px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow .17s;
}
.team-member:hover {
  box-shadow: 0 7px 27px rgba(36,43,69,0.09);
  background: #F3B50513;
}

/* --- COURSE --- */
.courses, .course-list .courses {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 20px 0;
}
.course-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 8px 0 rgba(36,43,69,0.07);
  padding: 20px 18px;
  flex: 1 1 210px;
  min-width: 210px;
  margin-bottom: 20px;
  position: relative;
  border-top: 4px solid var(--color-art-blue);
  transition: background 0.20s, border-top 0.20s;
}
.course-item:hover {
  background: #FFF7DF;
  border-top: 4px solid var(--color-art-magenta);
}

.categories span {
  font-family: 'Oswald', Arial Black, Arial, sans-serif;
  color: var(--color-art-magenta);
  font-size: 1rem;
  margin-right: 10px;
}
.categories {
  margin: 10px 0 15px 0;
}

/* --- ABOUT / PHILOSOPHY / VALUE --- */
.values-list ul, .qualifikationen ul, .faq-list ul, .benefits ul, .vorteile-list ul {
  list-style: disc inside;
  margin: 8px 0 8px 0;
  padding-left: 14px;
}

.history-timeline h3 {
  color: var(--color-art-magenta);
  font-size: 1.1rem;
  margin: 18px 0 6px 0;
}
.history-timeline p {
  font-size: 1rem;
  margin-bottom: 10px;
}

/**************************************
 * TESTIMONIALS & REVIEWS
 **************************************/
.testimonials, .testimonial, .testimonial-slider {
  width: 100%;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}
.testimonial-card {
  background: #fff;
  color: #222B45;
  border-left: 5px solid var(--color-art-blue);
}
.testimonial-card p {
  color: #222B45;
  font-size: 1.08rem;
}

.testimonial-meta {
  color: var(--color-art-magenta);
  font-weight: 700;
  margin-left: 2px;
}

/**************************************
 * CTAs & THANK YOU
 **************************************/
.cta {
  background: linear-gradient(120deg, #DB3C99 0%, #36BED4 80%);
  color: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 24px 0 rgba(219,60,153,0.07);
  margin: 48px 0 0 0;
}
.cta h2, .cta p {
  color: #fff;
  text-shadow: 0 1.5px 9px rgba(34,43,69,0.09);
}
.thank-you-section {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/**************************************
 * FOOTER
 **************************************/
footer {
  background: #222B45;
  color: #fff;
  padding: 50px 0 20px 0;
  font-size: 0.99rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 0 20px;
}
.footer-nav img {
  height: 34px;
  min-width: 32px;
}
.footer-nav nav {
  display: flex;
  gap: 20px;
}
.footer-nav nav a {
  color: var(--color-secondary);
  font-weight: 500;
  font-family: 'Oswald',Arial Black,Arial,sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.2px;
  transition: color 0.19s;
}
.footer-nav nav a:hover {
  color: #fff;
}
.social-icons {
  display: flex;
  gap:18px;
}
.social-icons img {
  height: 29px;
  filter: grayscale(0.14) brightness(1.15);
  opacity: .92;
  transition: opacity 0.13s, filter 0.19s;
}
.social-icons img:hover {
  filter: none;
  opacity:1;
}
.footer-info {
  text-align: center;
  color: #eef2f688;
  font-size: 0.95rem;
  margin-top: 8px;
}

/**************************************
 * TABLE STYLING (MITGLIEDSCHAFT)
 **************************************/
.mitgliedschaft-plans-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 32px;
  box-shadow:0 2px 14px rgba(36,43,69,0.07);
  overflow: hidden;
}
.mitgliedschaft-plans-table thead {
  background: #222B45;
  color: #fff;
}
.mitgliedschaft-plans-table th, .mitgliedschaft-plans-table td {
  padding: 20px 13px;
  text-align: left;
  font-size: 1.01rem;
}
.mitgliedschaft-plans-table tbody tr {
  border-bottom: 1px solid #eef2f6;
}
.mitgliedschaft-plans-table tbody td {
  color: #222B45;
}

/**************************************
 * CONTACT DETAILS
 **************************************/
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 24px 0 0 0;
}
.contact-info > div {
  min-width: 170px;
  background: #fff;
  border-radius: 15px;
  padding: 22px 17px;
  box-shadow: 0 2px 10px 1px rgba(36,43,69,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 20px;
  font-size: 1rem;
  border-top: 4px solid var(--color-art-blue);
  transition: border-top 0.20s;
}
.contact-info > div:hover {
  border-top: 4px solid var(--color-art-magenta);
}
.contact-info img { height: 30px; margin-bottom: 4px; }

/**************************************
 * LEGAL/LIST SECTIONS
 **************************************/
.legal .container, .legal .content-wrapper {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1.5px 9px rgba(36,43,69,0.07);
  padding: 34px 20px 34px 20px;
}
.legal h1, .legal h2, .legal h3 {
  color: var(--color-primary);
}
.legal ul, .legal ol {
  margin-left: 25px;
  margin-bottom: 18px;
}

/**************************************
 * COOKIE CONSENT BANNER + MODAL
 **************************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #fff 30%, #F3B505 100%);
  color: #222B45;
  padding: 18px 20px;
  box-shadow: 0 -2px 18px 0 rgba(36,43,69,0.09);
  z-index: 12000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  font-size: 1.07rem;
  animation: cookie-banner-entry 0.53s cubic-bezier(0.57,1.65,.28,0.55);
}
@keyframes cookie-banner-entry {
  0% { transform: translateY(80px); opacity: 0; }
  70% { transform: translateY(-10px); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  font-family: 'Oswald', Arial Black, Arial, sans-serif;
  font-size: 1.07rem;
  padding: 8px 21px;
  border-radius: 16px;
  border: none;
  margin-left: 4px;
  margin-right: 4px;
  cursor: pointer;
  box-shadow: 0 1.5px 6px 0 rgba(36,43,69,.11);
  transition: background 0.17s, color 0.14s, transform 0.16s;
}
.cookie-banner .accept {
  background: var(--color-art-blue);
  color: #fff;
  font-weight: bold;
}
.cookie-banner .accept:hover {
  background: var(--color-secondary);
  color: #222B45;
}
.cookie-banner .reject {
  background: #fff;
  color: var(--color-art-magenta);
  border: 1px solid var(--color-art-magenta);
}
.cookie-banner .reject:hover {
  background: var(--color-art-magenta);
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid #36BED4;
}
.cookie-banner .settings:hover {
  background: #36BED4;
  color: #fff;
}

.cookie-modal-overlay {
  position: fixed; top:0; left:0; right:0; bottom:0;
  background: rgba(34,43,69,0.43);
  z-index: 13000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 32px 0 rgba(36,43,69,0.14);
  max-width: 370px;
  width: 92vw;
  padding: 40px 22px 33px 22px;
  color: #222B45;
  animation: cookie-modal-in 0.34s cubic-bezier(.46,1.39,.68,1.52);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
@keyframes cookie-modal-in {
  0% {transform: scale(0.88) translateY(60px); opacity:0;}
  100% {transform: scale(1) translateY(0); opacity:1;}
}
.cookie-modal h2 {
  color: var(--color-art-magenta);
  margin-bottom: 12px;
}
.cookie-modal .modal-close {
  position: absolute;
  top:14px; right:19px;
  background: none; border: none;
  font-size: 1.9rem; color: #222B45; cursor: pointer;
  transition: color .17s;
}
.cookie-modal .modal-close:hover { color:var(--color-art-magenta); }
.cookie-modal label {
  display:flex; align-items:center; gap:10px;
  font-size:1rem; margin-bottom:8px;
  cursor:pointer;
}
.cookie-modal .toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #eef2f6;
  border-radius: 12px;
  position: relative;
  transition: background 0.19s;
  outline: none;
  border: none;
}
.cookie-modal .toggle:checked {
  background: #36BED4;
}
.cookie-modal .toggle:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.19s;
}
.cookie-modal .toggle:checked:before {
  left: 20px;
}
.cookie-category{
  margin-bottom:8px;
}
.cookie-modal .modal-actions{
  display: flex;
  gap: 17px;
  margin-top:12px;
}
.cookie-modal .modal-actions button{
  font-family: 'Oswald', Arial Black, Arial, sans-serif;
  font-size: 1.07rem;
  padding: 7px 20px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
}
.cookie-modal .accept { background: #36BED4; color: #fff; font-weight: bold; }
.cookie-modal .reject { background: #fff; color: #DB3C99; border: 1px solid #DB3C99; }
.cookie-modal .settings { background: #fff; color: #222B45; border: 1px solid #36BED4; }
.cookie-modal .accept:hover { background: #F3B505; color: #222B45; }
.cookie-modal .reject:hover { background: #DB3C99; color: #fff; }
.cookie-modal .settings:hover { background: #36BED4; color: #fff; }

/**************************************
 * MEDIA QUERIES, RESPONSIVE DESIGN
 **************************************/
@media (max-width: 1050px) {
  .container { max-width: 100%; }
  .main-nav { gap:14px; font-size:1.04rem; }
  .footer-nav { gap: 18px; }
}
@media (max-width: 900px){
  .main-nav { gap: 8px; }
  .footer-nav nav { gap:8px; }
}
@media (max-width: 820px){
  .feature-grid, .angebot-grid, .mitgliedschaft-vorteile-grid,
  .usps-grid, .angebot-list, .team-list, .courses {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.24rem; }
  .container { padding: 0 8px; }
  .main-nav {display:none;}
  .mobile-menu-toggle { display: block; }
  .footer-nav { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-nav nav { flex-direction: column; gap: 4px; }
  .feature-grid, .angebot-grid, .mitgliedschaft-vorteile-grid, .usps-grid, .angebot-list, .team-list, .courses {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid, .testimonial-slider, .contact-info {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card { padding: 18px 10px; }
  .cta { padding: 23px 8px; }
  .section { padding: 32px 8px; margin-bottom: 35px; }
  .thank-you-section { padding: 20px 0; }
  .hero { padding:54px 0 28px 0; }
}

@media (max-width: 520px) {
  h1 { font-size: 1.45rem; }
  .main-nav, .footer-nav nav, .footer-nav { font-size: 0.98rem; }
  .container { padding: 0 2px; }
  .testimonial-card, .feature-item, .usp-item, .vorteil-item, .angebot-card, .team-member, .course-item { padding: 16px 8px; }
  .section { padding: 21px 2px; }
}

/***** UTILITY ****/ 
::selection { background: #F3B505; color: #222B45; }

/* Scrollbar for webkit */
::-webkit-scrollbar { width: 8px; background: #eef2f6; }
::-webkit-scrollbar-thumb { background: #F3B505; border-radius: 4px; }
