/* =========================================================
   TANZSPORT
   Styles für die neue Unterseite.
   Header, Footer, Navigation und Offcanvas kommen ausschließlich
   aus shared.css.
========================================================= */

.tanzsport-page {
  background: #fff;
}

/* Hero der Unterseite – nur Seiteninhalt, Header bleibt shared.css */
.tanzsport-hero {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(82, 57, 32, .55), rgba(82, 57, 32, .55)),
    url("../img/hero.jpg") center / cover no-repeat;
}

.tanzsport-hero__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 62px 22px 28px;
  text-align: center;
}

.tanzsport-hero__eyebrow {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tanzsport-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.9rem, 7vw, 3.1rem);
  font-weight: 600;
  line-height: 1.05;
}

.tanzsport-intro,
.tanzsport-problem,
.tanzsport-training,
.tanzsport-cta,
.tanzsport-benefits,
.tanzsport-faq {
  padding: 28px 12px;
}

.tanzsport-inner {
  width: min(100%, 760px);
  margin: 0 auto;
}

.tanzsport-intro {
  background: #fff;
}

.tanzsport-intro p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1.12;
}

.tanzsport-problem {
  color: #fff;
  background: var(--brown);
}

.tanzsport-problem h2,
.tanzsport-training h2,
.tanzsport-faq h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
}

.tanzsport-problem ul,
.tanzsport-training ul,
.tanzsport-benefits ul {
  margin: 0;
  padding-left: 20px;
  font-family: var(--display);
  line-height: 1.2;
}

.tanzsport-problem__note {
  margin: 20px 0 0;
  color: rgba(255,255,255,.78);
  font-family: var(--display);
  line-height: 1.1;
}

.tanzsport-image {
  height: 340px;
  overflow: hidden;
}

.tanzsport-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tanzsport-training {
  background: #fff0d2;
}

.tanzsport-training > .tanzsport-inner > p {
  margin: 0 0 14px;
  color: #6f5940;
  font-family: var(--display);
  font-size: 1.05rem;
}

.tanzsport-cta {
  text-align: center;
  background: #fff;
}

.tanzsport-cta__eyebrow,
.tanzsport-benefits__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tanzsport-cta h2 {
  max-width: 620px;
  margin: 0 auto 24px;
  font-family: var(--display);
  font-size: clamp(1.9rem, 6.5vw, 2.8rem);
  line-height: 1.03;
}

.tanzsport-cta__cards {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

.tanzsport-cta__card {
  display: block;
  padding: 14px 18px;
  border-radius: 7px;
  color: #fff;
  background: #ffb23f;
  font-family: var(--display);
  line-height: 1.1;
}

.tanzsport-cta__card small {
  display: block;
  margin-top: 6px;
  font-size: .8rem;
}

.tanzsport-benefits {
  color: #fff;
  background: #241c15;
}

.tanzsport-benefits__eyebrow {
  color: var(--red);
}

.tanzsport-benefits ul {
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.05;
}

.tanzsport-faq {
  background: #fff;
}

.tanzsport-faq__item {
  margin-bottom: 18px;
  font-family: var(--display);
}

.tanzsport-faq__item p {
  margin: 0 0 4px;
  color: #b8aea5;
}

.tanzsport-faq__item strong {
  display: block;
  line-height: 1.15;
}

.tanzsport-actions {
  display: grid;
  gap: 12px;
  max-width: 290px;
  margin: 34px auto 0;
}

.tanzsport-actions a {
  padding: 13px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  text-align: center;
  font-family: var(--display);
}

@media (min-width: 760px) {
  .tanzsport-hero {
    min-height: 520px;
  }

  .tanzsport-hero__content {
    max-width: 760px;
    padding-top: 90px;
  }

  .tanzsport-intro,
  .tanzsport-problem,
  .tanzsport-training,
  .tanzsport-cta,
  .tanzsport-benefits,
  .tanzsport-faq {
    padding: 70px 32px;
  }

  .tanzsport-image {
    height: 560px;
  }

  .tanzsport-cta__cards {
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
  }

  .tanzsport-benefits ul {
    max-width: 720px;
    font-size: 2rem;
  }
}

@media (min-width: 1100px) {
  .tanzsport-hero {
    min-height: 650px;
  }

  .tanzsport-inner {
    width: min(100%, 980px);
  }

  .tanzsport-intro p {
    max-width: 760px;
    font-size: 1.35rem;
  }

  .tanzsport-problem .tanzsport-inner,
  .tanzsport-training .tanzsport-inner {
    max-width: 900px;
  }

  .tanzsport-image {
    height: 650px;
  }
}
