:root {
  --rainbow: linear-gradient(90deg,#FF3366,#FF6B3F,#FFC700,#00C97F,#00AAFF,#9B5FFF);
  --c-bg: #F8F7F4;
  --c-dark: #0E0D0C;
  --c-mid: #3D3B37;
  --c-muted: #888077;
  --c-surface: #FFFFFF;
  --c-border: #E5E2DB;
  --pink:   #FF3366;
  --orange: #FF6B3F;
  --yellow: #FFC700;
  --green:  #00C97F;
  --blue:   #00AAFF;
  --violet: #9B5FFF;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 2px 24px rgba(14,13,12,.07);
  --fa-animation-duration: 2s;
}

*, *::before, *::after { box-sizing: border-box; }


html { scroll-behavior: smooth; scroll-padding-top: 80px; background-color: #FBFAF8; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: transparent; 
  color: var(--c-dark);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;  
  position: relative;
}

/* ─── Special Font sizes ─── */
.fs-82 {
  font-size:.82rem !important;
}

/* ─── Dezente Regenbogen-Farbtupfer, fixiert, "hier und da" ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(420px 420px at 12% 8%,  rgba(255,51,102,.06)  0%, transparent 70%),
    radial-gradient(460px 460px at 88% 22%, rgba(155,95,255,.06) 0%, transparent 70%),
    radial-gradient(400px 400px at 8%  55%, rgba(0,170,255,.05)  0%, transparent 70%),
    radial-gradient(440px 440px at 92% 70%, rgba(0,201,127,.05)  0%, transparent 70%),
    radial-gradient(380px 380px at 30% 92%, rgba(255,199,0,.05)  0%, transparent 70%);
}

h1,h2,h3,h4,h5 {
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ─── Rainbow Stripe ─── */
.rainbow-bar {
  height: 4px;
  background: var(--rainbow);
  width: 100%;
}

/* ─── Rainbow em ─── */
.rainbow-em {
  font-style: normal;
  background: var(--rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  word-break: keep-all;
  white-space: nowrap;
}

/* ─── Rainbow Backgrounds ─── */
.rainbow-bg-red {
  background:linear-gradient(135deg,#FF3366,#FF6B3F);
}
.rainbow-bg-violet {
  background:linear-gradient(135deg,#9B5FFF,#5B9FFF);
}
.rainbow-bg-aqua {
  background:linear-gradient(135deg,#00AAFF,#00C97F);
}
.rainbow-bg-orange {
  background:linear-gradient(135deg,#FFC700,#FF6B3F);
}
.rainbow-bg-green {
  background:linear-gradient(135deg,#00C97F,#00AAFF);
}
.rainbow-bg-fuchsia {
  background:linear-gradient(135deg,#FF3366,#9B5FFF);
}

.soft-bg-violet {
  background:rgba(155,95,255,.12);
}
.soft-bg-green {
  background:rgba(0,201,127,.12);
}
.soft-bg-blue {
  background:rgba(0,170,255,.12);
}
.soft_bg_beige {
  background:rgba(255,199,0,.15);
}

/* ─── Special Text colors ─── */
.text-my-green {
  color:var(--green);  
}
.text-my-violet {
  color:var(--violet);  
}
.text-my-yellow {
  color:var(--yellow);  
}
.text-my-blue {
  color:var(--blue);  
}
.text-my-orange {
  color:var(--orange);  
}
.text-my-beige {
  color:#B8860B;
}

/* ─── Helpers ─── */
.inline-flex {
  display:inline-flex;
}
.flex-width-100 {
  flex: 0 0 100%; 
}
.flex-break {
  flex-basis: 100%!important;
  height: 0;
  gap:0; 
}
.white-space-nowrap {
  white-space: nowrap;
}

/* ─── Scroll To Top Button ─── */
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  color: var(--c-surface);
  border-radius: 50%;
}

/* ─── Fontawesome no underline ─── */
i[class^="fa-"]:before {
  display: inline-block;
  text-decoration: none;
}

/* ─── Links ─── */
.link-violett {
  display: inline-flex;
  align-items: center;
  gap: 5px;  
  font-weight: 600;
  color: var(--violet);
  text-decoration: none;   
}
.link-violett:hover { text-decoration: underline; color: var(--violet); }

/* ─── Scroll Animation ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Navbar ─── */
.navbar {
  background: rgba(248,247,244,.95);
  backdrop-filter: blur(12px);  
  border-bottom: 1px solid var(--c-border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 10000;
}
.navbar-brand {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--c-dark) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  color: var(--c-mid) !important;
  font-weight: 500;
  font-size: .9rem;
  transition: color .2s;
  padding: 6px 14px !important;
}
.nav-link:hover { color: var(--c-dark) !important; }

/* ─── Kontakt Button Navbar ─── */
.btn-nav-kontakt {
  background: linear-gradient(135deg,#FF3366,#9B5FFF);
  color: #fff !important;
  border-radius: 100px;
  padding: 9px 22px;
  font-size: .87rem;
  font-weight: 700;
  font-family: 'Bricolage Grotesque', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(155,95,255,.35);
}
.btn-nav-kontakt:hover { opacity: .88; transform: translateY(-1px); color: #fff !important; }

/* ─── FAQ ─── */
.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 10px;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-question {
  width: 100%;
  background: var(--c-surface);
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: .97rem;
  color: var(--c-dark);
  cursor: pointer;
  text-align: left;
  transition: background .2s;
}
.faq-question:hover { background: rgba(155,95,255,.04); }
.faq-question[aria-expanded="true"] { background: rgba(155,95,255,.06); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg,#9B5FFF,#00AAFF);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: .75rem;
  transition: transform .3s;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  background: var(--c-surface);
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  font-size: .9rem;
  color: var(--c-mid);
  line-height: 1.7;
}
.faq-answer.open { max-height: 400px; padding: 10px 24px 20px; }


/* ─── Footer ─── */
footer {
  background: var(--c-surface);
  color: var(--c-muted);
  padding: 60px 0 40px;
  border-top: 1px solid var(--c-border);
}
footer .footer-brand {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--c-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-tagline { font-size: .9rem; max-width: 260px; line-height: 1.6; }
.footer-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: var(--c-dark);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 10px; }
footer ul li a {
  color: var(--c-muted);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s;
}
footer ul li a:hover { color: var(--c-dark); }
.footer-bottom {
  border-top: 1px solid var(--c-border);
  margin-top: 48px;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .82rem;
}
.social-links { display: flex; gap: 14px; }
.social-links a {
  color: var(--c-muted);
  font-size: 1.1rem;
  transition: color .2s;
  text-decoration: none;
}
.social-links a:hover { color: var(--c-dark); }

/* ─── Cookie Banner ─── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--c-dark);
  color: rgba(255,255,255,.85);
  padding: 0;
  box-shadow: 0 -4px 40px rgba(0,0,0,.25);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
#cookie-banner.show {
  transform: translateY(0);
}
#cookie-banner::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--rainbow);
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.cookie-text {
  flex: 1;
  min-width: 240px;
}
.cookie-text strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}
.cookie-text p {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin: 0;
  line-height: 1.5;
}
.cookie-text a {
  color: rgba(255,255,255,.7);
  text-decoration: underline;
  transition: color .2s;
}
.cookie-text a:hover { color: #fff; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-cookie-accept {
  background: linear-gradient(135deg,#FF3366,#9B5FFF);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 10px 22px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(155,95,255,.35);
}
.btn-cookie-accept:hover { opacity: .88; transform: translateY(-1px); }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 10px 22px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .2s, color .2s;
}
.btn-cookie-decline:hover { border-color: rgba(255,255,255,.5); color: rgba(255,255,255,.85); }

/* Abschnitte transparent – der globale, zarte Regenbogen-Verlauf liegt auf <body> */
section { padding: 80px 0; }
section { background: transparent; }
@media (max-width: 991.98px) {
  section { padding: 40px 0; }
}

@media (max-width: 991.98px) {
  section { padding: 40px 0; }
}

/* Tansition Delay Classes */
.transition-delay-1 {
  transition-delay:.1s;
}
.transition-delay-2 {
  transition-delay:.2s;
}
.transition-delay-3 {
  transition-delay:.3s;
}
.transition-delay-4 {
  transition-delay:.4s;
}
.transition-delay-5 {
  transition-delay:.5s;
}
.transition-delay-6 {
  transition-delay:.6s;
}
.transition-delay-7 {
  transition-delay:.7s;
}
.transition-delay-8 {
  transition-delay:.8s;
}
.transition-delay-9 {
  transition-delay:.9s;
}

@media (max-width: 575.98px) {
  .w-sm-100 {
    width:100%;
  }
}