/* ==========================================================================
   SHEdance. — eigene Optik der Sub-Marke (dunkel).
   Wird zusaetzlich zu site.css geladen: Tokens, Schriften, Wortmarke, Buttons
   und der Medien-Platzhalter kommen von dort, hier nur die dunkle Welt.
   ========================================================================== */

/* Dunkle Seite: auch Scrollbalken und Formularelemente dunkel darstellen */
html:has(body.shedance) { color-scheme: dark; }

body.shedance {
  background: var(--ink);
  color: #fff;
}
.shedance ::selection { background: var(--yellow); color: var(--ink); }

/* ------------------------------------------------- Mini-Nav (Glas-Pille) */
.mini-nav {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  padding-inline: var(--pad);
  transition: transform .32s cubic-bezier(.2, .8, .3, 1);
}
.mini-nav__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 10px 12px 10px 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(10, 10, 10, .78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .45);
}
.mini-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .45);
  font-size: 11.5px;
  font-weight: 600;
  transition: color .18s ease;
  flex-shrink: 0;
}
.mini-nav__back:hover { color: #fff; }
/* Sub-Marke: Original-Logo als SVG, Groessen der Kleinfassungen */
.mini-nav .logo-dance-svg { width: 100px; }
.sd-footer .logo-dance-svg { width: 92px; }
.mini-nav__links { display: flex; gap: 26px; align-items: center; }
.mini-nav__links a {
  color: rgba(255, 255, 255, .55);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.mini-nav__links a:hover { color: #fff; }
.mini-nav__links a.is-active { color: #fff; border-bottom-color: var(--yellow); }
.mini-nav__links .btn { border-bottom: 0; }
.mini-nav__burger span { background: #fff; }

/* ------------------------------------------------------------------- Hero */
.sd-hero {
  min-height: min(92vh, 940px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(130px, 15vw, 170px) var(--pad) clamp(48px, 6vw, 70px);
  position: relative;
  max-width: var(--maxw);
  margin-inline: auto;
  background:
    radial-gradient(ellipse 900px 600px at 80% 20%, rgba(196, 72, 90, .45), transparent),
    radial-gradient(ellipse 700px 500px at 15% 85%, rgba(255, 222, 89, .1), transparent);
}
.sd-hero__dots {
  position: absolute;
  top: 15%; right: 10%;
  display: flex;
  gap: 10px;
  opacity: .5;
}
.sd-hero__dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  animation: sd-pulse 2.4s ease-in-out infinite;
}
.sd-hero__dots span:nth-child(2) { background: var(--pink); animation-delay: .3s; }
.sd-hero__dots span:nth-child(3) { background: #fff; animation-delay: .6s; }
@keyframes sd-pulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50% { transform: scale(1.5); opacity: 1; }
}
.kino__schleier--nacht { background: linear-gradient(160deg, var(--berry), #120608 80%) !important; }
/* Das Hintergrundbild traegt die GANZE Seite: das Kino haengt fix im
   Viewport (auf Seitenebene, ausserhalb des Heros), alles scrollt darueber */
.kino--seite { position: fixed; inset: 0; z-index: -1; }
.sd-hero .kino::after, .kino--seite::after {
  background:
    linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .3) 40%, rgba(0, 0, 0, .78));
}
.sd-hero__scribble { position: absolute; bottom: 8%; left: 6%; opacity: .35; z-index: 0; pointer-events: none; }

.sd-eyebrow {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 22px;
}
.sd-hero .wordmark { position: relative; z-index: 2; color: #fff; }
.sd-hero__sub {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255, 255, 255, .65);
  max-width: 520px;
  line-height: 1.55;
  font-weight: 500;
}
.sd-hero__actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  margin-top: 36px;
  align-items: center;
  flex-wrap: wrap;
}
.sd-hero__meta {
  position: relative;
  z-index: 2;
  display: flex;
  gap: clamp(24px, 4vw, 44px);
  margin-top: clamp(40px, 6vw, 70px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  flex-wrap: wrap;
}
.sd-meta__l { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255, 255, 255, .4); margin-bottom: 6px; }
.sd-meta__v { font-family: var(--font-head); font-weight: 700; font-size: 16px; }

.btn--ghost-light { color: #fff; border-bottom: 2px solid rgba(255, 255, 255, .3); border-radius: 0; padding: 16px 6px; }
.btn--ghost-light:hover { border-bottom-color: var(--yellow); color: var(--yellow); }

/* Laufband: gemeinsame Komponente in site.css */

/* ------------------------------------------------------------------- Vibe */
.sd-section { padding: clamp(48px, 6vw, 90px) var(--pad); max-width: var(--maxw); margin-inline: auto; }
.sd-section--tight { padding-top: clamp(16px, 2vw, 20px); }

.vibe { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 50px); align-items: center; }
.vibe__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 22px;
}
.vibe__title span { color: var(--pink); }
.vibe__text { font-size: 15.5px; color: rgba(255, 255, 255, .6); line-height: 1.65; font-weight: 500; }
.vibe__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.vibe__tag {
  border: 1.5px solid rgba(255, 255, 255, .25);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
}

.vibe__stack { position: relative; height: 420px; }
.vibe__stack .media { position: absolute; border-radius: var(--radius-s); }
.vibe__stack .media::before { font-size: 30px; opacity: .3; }
.vibe__stack .media--p1 { width: 60%; max-width: 260px; height: 320px; top: 0; left: 40px; background: linear-gradient(135deg, var(--berry), #7c2f3c); z-index: 2; }
.vibe__stack .media--p2 { width: 46%; max-width: 200px; height: 240px; bottom: 0; right: 20px; background: linear-gradient(135deg, #242424, #1a1a1a); border: 1px solid rgba(255, 255, 255, .1); z-index: 1; }

/* ---------------------------------------------------------------- Line-up */
.sd-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -1px;
  margin-bottom: 32px;
}
.sd-title span { color: var(--yellow); }
.sd-card {
  border: 2px dashed rgba(255, 255, 255, .25);
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 60px);
  text-align: center;
}
.sd-card__t { font-family: var(--font-head); font-weight: 800; font-size: 22px; margin-bottom: 10px; }
.sd-card__d { font-size: 14px; color: rgba(255, 255, 255, .5); line-height: 1.6; max-width: 520px; margin-inline: auto; }

/* ------------------------------------------------------------- Info-Streifen */
.info-strip {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: calc(var(--maxw) - 2 * var(--pad));
  width: calc(100% - 2 * var(--pad));
  margin: 0 auto clamp(48px, 6vw, 90px);
}
.info-strip__item { padding: 32px; border-right: 1px solid rgba(255, 255, 255, .1); }
.info-strip__item:last-child { border-right: none; }
.info-strip__l { font-size: 10.5px; text-transform: uppercase; letter-spacing: 2px; color: var(--yellow); margin-bottom: 10px; font-weight: 700; }
.info-strip__v { font-family: var(--font-head); font-weight: 800; font-size: 20px; line-height: 1.3; }

/* -------------------------------------------------------------------- FAQ */
.faq { max-width: 820px; }
.faq__item { border-bottom: 1px solid rgba(255, 255, 255, .12); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(16px, 1.8vw, 19px);
  color: #fff;
}
.faq__q:hover { color: var(--yellow); }
.faq__icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .3);
  display: grid;
  place-items: center;
  font-size: 15px;
  transition: transform .22s ease, background-color .22s ease, color .22s ease;
}
.faq__q[aria-expanded='true'] .faq__icon { transform: rotate(45deg); background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.faq__a { padding: 0 0 22px; font-size: 14.5px; line-height: 1.65; color: rgba(255, 255, 255, .6); max-width: 640px; }
.faq__a[hidden] { display: none; }

/* ------------------------------------------------------------------- Fuss */
.sd-footer {
  padding: 36px var(--pad);
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.sd-footer__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.sd-footer__powered {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .35);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sd-footer__powered strong { color: rgba(255, 255, 255, .6); font-weight: 800; }
.sd-footer__powered:hover strong { color: var(--yellow); }
.sd-footer__legal { display: flex; gap: 16px; font-size: 11.5px; color: rgba(255, 255, 255, .35); }
.sd-footer__legal a:hover { color: rgba(255, 255, 255, .7); }

/* ------------------------------------------------------------- Responsive */
@media (max-width: 980px) {
  .vibe { grid-template-columns: 1fr; }
  .vibe__stack { height: 340px; }
  .info-strip { grid-template-columns: 1fr; }
  .info-strip__item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, .1); }
  .info-strip__item:last-child { border-bottom: none; }

  .mini-nav__burger { display: flex; }
  .mini-nav__links {
    position: fixed;
    inset: 0 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0d0d0d;
    padding: 84px max(var(--pad), env(safe-area-inset-left)) calc(36px + env(safe-area-inset-bottom));
    height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-100%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    z-index: 90;
  }
  .mini-nav__links.is-open { transform: translateY(0); }
  .mini-nav__links a {
    font-size: 22px;
    font-family: var(--font-head);
    font-weight: 800;
    color: #fff;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }
  .mini-nav__links a.btn--yellow {
    color: var(--ink);
    margin-top: 24px;
    align-self: flex-start;
    font-size: 15px;
    padding: 15px 34px;
  }
  .mini-nav__inner { position: relative; z-index: 210; }
  .mini-nav { z-index: 200; }
  /* Rueckweg, Wortmarke und Burger bleiben ueber dem offenen Menu sichtbar */
  .mini-nav__back, .mini-nav__inner > .wordmark, .mini-nav__burger { position: relative; z-index: 95; }
}

@media (max-width: 700px) {
  .sd-hero { min-height: auto; overflow: clip; }
  .sd-hero__scribble { display: none; }
  .sd-hero__dots { top: auto; bottom: 4%; right: 8%; }
  .vibe__stack { height: 300px; }
  .vibe__stack .media--p1 { left: 0; }
}
