/* ============================================
   DANCE-X-TOUCH.CSS
   Event: Dance x Touch meets Breath
   Inherits: verbindung.robertkalli.com/assets/css/verbindung.css
   Charakter: hell, warm, Cream-Amber / Kupfer
   ============================================ */

/* ── EVENT TOKENS (erben grösstenteils von verbindung.css) ── */

:root {
  --dx-hero-veil: rgba(250,246,239,0.55);
}

/* ── NAV ── */

.dx-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2.5rem;
  border-bottom: 0.5px solid transparent;
  transition: background 400ms ease, border-color 400ms ease;
}

.dx-nav.scrolled {
  background: rgba(250,246,239,0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--vb-border);
}

.dx-nav-logo {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--vb-ink);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.dx-nav-logo:hover { opacity: 1; }
.dx-nav-logo span { color: var(--vb-acc); }

.dx-nav-back {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vb-muted);
  text-decoration: none;
  transition: color 180ms ease;
}

.dx-nav-back:hover { color: var(--vb-acc); }

/* ── HERO ──
   Bild-Hintergrund: in .dx-hero-bg via
   <style>.dx-hero-bg { background-image: url('/assets/img/dxt-hero.webp'); }</style>
   gesetzt (siehe HTML). Empfehlung: ruhiges, eher dunkleres/warmes Motiv,
   damit der helle Hero-Text lesbar bleibt. max 1920px, < 300KB, WebP.
*/

.dx-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  overflow: hidden;
}

.dx-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  /* PLACEHOLDER — Hintergrundbild via <style> in HTML einfügen */
}

/* Overlay: oben abdunkeln für Textkontrast, unten weich ins Cream der Seite */
.dx-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(26,18,8,0.46) 0%,
    rgba(26,18,8,0.30) 38%,
    rgba(46,30,10,0.34) 70%,
    var(--vb-bg) 100%
  );
}

.dx-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dx-hero-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vb-acc-light);
  margin-bottom: 1.75rem;
  opacity: 0.95;
}

.dx-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #FAF6EF;
  text-shadow: 0 1px 30px rgba(26,18,8,0.35);
  margin-bottom: 1.75rem;
}

.dx-hero-title em {
  font-style: italic;
  color: var(--vb-acc-light);
}

.dx-hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(250,246,239,0.88);
  max-width: 44ch;
  line-height: 1.85;
  margin: 0 auto 2.5rem;
}

.dx-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.78);
  margin-bottom: 0.75rem;
}

.dx-hero-meta span { white-space: nowrap; }
.dx-hero-meta .dx-dot { color: var(--vb-acc-light); opacity: 0.7; }

.dx-hero-price {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: rgba(250,246,239,0.82);
  margin-bottom: 2.5rem;
}

.dx-hero-scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.dx-hero-scroll span {
  display: block;
  width: 0.5px;
  height: 40px;
  background: linear-gradient(to bottom, var(--vb-acc-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(1); }
  50%       { opacity: 0.6; transform: scaleY(1.1); }
}

/* ── BUTTONS ── */

.dx-btn {
  display: inline-block;
  padding: 1rem 2.75rem;
  background: var(--vb-acc-dim);
  color: var(--vb-bg);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  position: relative;
}

.dx-btn:hover { background: var(--vb-ink); transform: translateY(-1px); }

/* ── SECTIONS ── */

.dx-section {
  padding: 5.5rem 2rem;
  max-width: 920px;
  margin: 0 auto;
}

.dx-section--wide { max-width: 1040px; }

.dx-section--warm {
  max-width: none;
  background: var(--vb-bg-mid);
  border-top: 0.5px solid var(--vb-border);
  border-bottom: 0.5px solid var(--vb-border);
}

.dx-section--warm .dx-inner {
  max-width: 920px;
  margin: 0 auto;
}

.dx-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vb-acc);
  opacity: 0.85;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dx-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 0.5px;
  background: var(--vb-acc);
}

.dx-label--center { justify-content: center; }
.dx-label--center::before { display: none; }

.dx-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--vb-ink);
  margin-bottom: 1.75rem;
}

.dx-title em { font-style: italic; color: var(--vb-acc); }
.dx-title--center { text-align: center; }

.dx-body {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--vb-ink-soft);
  max-width: 56ch;
  line-height: 1.9;
}

.dx-body p { margin-bottom: 1.1rem; }
.dx-body p:last-child { margin-bottom: 0; }

/* ── TAG CLUSTER ── */

.dx-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.25rem;
}

.dx-tag {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vb-warm);
  background: var(--vb-acc-light);
  border: 0.5px solid var(--vb-border);
  border-radius: 2px;
  padding: 0.45rem 0.9rem;
}

/* ── ABLAUF / STEPS (Karten-Grid) ── */

.dx-steps {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--vb-border);
  border: 0.5px solid var(--vb-border);
  border-radius: 2px;
  overflow: hidden;
}

.dx-step {
  background: var(--vb-bg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 280ms ease;
}

.dx-step:hover { background: var(--vb-acc-light); }

/* letzter Schritt (05) über volle Breite */
.dx-step:last-child:nth-child(odd) { grid-column: 1 / -1; }

.dx-step-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--vb-acc);
  opacity: 0.22;
  line-height: 1;
  position: absolute;
  top: 1.6rem;
  right: 1.8rem;
}

.dx-step-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vb-acc);
  opacity: 0.75;
  margin-bottom: 0.75rem;
}

.dx-step-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--vb-ink);
  line-height: 1.2;
  margin-bottom: 0.85rem;
  max-width: 16ch;
}

.dx-step-body {
  font-size: 0.95rem;
  color: var(--vb-ink-soft);
  line-height: 1.8;
}

.dx-step-by {
  margin-top: 1.25rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vb-muted);
}

/* ── FÜR WEN ── */

.dx-forwhom-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  max-width: 60ch;
}

.dx-forwhom-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--vb-ink-soft);
  line-height: 1.7;
}

.dx-forwhom-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vb-acc);
  opacity: 0.5;
}

.dx-forwhom-note {
  font-size: 0.92rem;
  color: var(--vb-ink-soft);
  line-height: 1.8;
  max-width: 56ch;
}

/* ── QUOTE / PARALLAX ──
   Bild via inline style="background-image: url('/assets/img/dxt-parallax.webp');"
   am .dx-parallax-Element (siehe HTML). max 1920px, < 300KB, WebP.
*/

.dx-parallax {
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.dx-parallax-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(26,18,8,0.50) 0%,
    rgba(26,18,8,0.42) 50%,
    rgba(26,18,8,0.55) 100%
  );
}

.dx-parallax-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.dx-parallax-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 300;
  line-height: 1.45;
  text-align: center;
  max-width: 680px;
  color: #FAF6EF;
  text-shadow: 0 1px 24px rgba(26,18,8,0.4);
}

.dx-parallax-quote em {
  font-style: italic;
  color: var(--vb-acc-light);
}

/* ── BEGLEITUNG ── */

.dx-people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.dx-person-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--vb-acc-light);
  border: 0.5px solid var(--vb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.dx-person-photo span {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vb-muted);
  opacity: 0.6;
}

.dx-person-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--vb-ink);
  margin-bottom: 0.3rem;
}

.dx-person-role {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vb-acc);
  opacity: 0.8;
  margin-bottom: 0.9rem;
  line-height: 1.5;
}

.dx-person-bio {
  font-size: .95rem;
  color: var(--vb-ink-soft);
  line-height: 1.8;
}

/* ── ZEIT & ORT ── */

.dx-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--vb-border);
  border: 0.5px solid var(--vb-border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 3rem;
}

.dx-detail {
  background: var(--vb-bg);
  padding: 2.25rem 1.75rem;
}

.dx-detail-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vb-acc);
  opacity: 0.8;
  margin-bottom: 0.85rem;
}

.dx-detail-value {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--vb-ink);
  line-height: 1.4;
}

.dx-detail-value small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--vb-ink-soft);
  margin-top: 0.35rem;
  letter-spacing: 0.02em;
}

/* ── ABSCHLUSS CTA ── */

.dx-section--cta {
  max-width: none;
  background: var(--vb-bg-mid);
  border-top: 0.5px solid var(--vb-border);
  text-align: center;
}

.dx-cta-inner { max-width: 540px; margin: 0 auto; }

.dx-cta-text {
  font-size: 1rem;
  color: var(--vb-ink-soft);
  line-height: 1.85;
  margin: 0 auto 2.25rem;
  max-width: 42ch;
}

/* ── FOOTER ── */

.dx-footer {
  background: var(--vb-ink);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dx-footer-logo {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: #FAF6EF;
  opacity: 0.3;
  text-decoration: none;
}

.dx-footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dx-footer-links a {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(250,246,239,0.3);
  text-decoration: none;
  transition: color 180ms ease;
}

.dx-footer-links a:hover { color: rgba(250,246,239,0.8); }

/* ── ANIMATION ── */

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */

@media (max-width: 960px) {
  .dx-parallax { height: 320px; }
}

@media (max-width: 760px) {
  .dx-nav { padding: 1.25rem 1.5rem; }
  .dx-section { padding: 4rem 1.5rem; }
  .dx-steps { grid-template-columns: 1fr; }
  .dx-step:last-child:nth-child(odd) { grid-column: auto; }
  .dx-people { grid-template-columns: 1fr; gap: 3rem; max-width: 380px; margin-left: auto; margin-right: auto; }
  .dx-details { grid-template-columns: 1fr; }
  .dx-footer { flex-direction: column; gap: 1rem; padding: 1.5rem; text-align: center; }
  /* iOS rendert background-attachment: fixed nicht zuverlässig */
  .dx-parallax { background-attachment: scroll; height: 300px; }
}
