/* ============================================================
   dee-fit.de — "Die ersten 6 Wochen zurück in den Sport"
   Design tokens 1:1 aus dem Corporate Design von dee-fit.de
   ============================================================ */

:root {
  --color-primary: #556F57;
  --color-secondary: #FFEAB0;
  --color-heading-green: #416645;
  --color-accent-dark: #212121;
  --color-text: #424242;
  --color-bg-warm: #FCF5F0;
  --color-white: #FFFFFF;
  --color-gray: #757575;
  --color-apricot: #FFBC7D;

  --font-heading: "Abhaya Libre", Georgia, serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;
  --font-script: "Mrs Saint Delafield", cursive;

  --radius-btn: 8px;
  --radius-pill: 30px;
  --radius-card: 18px;
  --shadow-soft: 0 14px 40px rgba(33, 33, 33, 0.08);
  --shadow-card: 0 8px 24px rgba(65, 102, 69, 0.1);
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-heading-green);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
}

h1 { font-size: clamp(36px, 6vw, 58px); }
h2 { font-size: clamp(28px, 4.2vw, 42px); }
h3 { font-size: clamp(20px, 2.6vw, 26px); }

p { margin: 0 0 16px; }

a { color: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.section {
  padding: clamp(56px, 9vw, 110px) 0;
}

.section-bg-warm { background: var(--color-bg-warm); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}

.section-header p { color: var(--color-gray); font-size: 18px; }

.script-accent {
  font-family: var(--font-script);
  color: var(--color-apricot);
  font-size: 38px;
  font-weight: 400;
  display: block;
  margin-bottom: 4px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: var(--radius-btn);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-secondary);
}
.btn-primary:hover {
  background: transparent;
  color: var(--color-primary);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--radius-pill);
}
.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
}

.btn-onlight {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  background: transparent;
}
.btn-onlight:hover {
  background: var(--color-secondary);
  color: var(--color-heading-green);
}

.btn-block { width: 100%; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.cta-row.center { justify-content: center; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(65, 102, 69, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo img { height: 46px; width: auto; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  color: var(--color-white);
  display: flex;
  align-items: center;
  min-height: 92vh;
  background-color: var(--color-heading-green);
  background-image: linear-gradient(180deg, rgba(33,45,34,0.55) 0%, rgba(33,45,34,0.72) 60%, rgba(33,45,34,0.88) 100%), var(--hero-image, none);
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 760px;
  padding: 120px 0 80px;
}

.hero h1 { color: var(--color-white); margin-bottom: 22px; }

.hero .subhead {
  font-size: clamp(17px, 2vw, 20px);
  color: #F5F1E8;
  max-width: 620px;
  margin-bottom: 36px;
}

.hero .trust-note {
  margin-top: 26px;
  font-size: 14px;
  color: var(--color-secondary);
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ---------- Problem / Empathie ---------- */

.empathy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 20px;
}

.empathy-card {
  background: var(--color-white);
  border: 1px solid rgba(65, 102, 69, 0.12);
  border-radius: var(--radius-card);
  padding: 32px 26px;
  text-align: center;
}

.empathy-card .icon {
  font-size: 34px;
  margin-bottom: 16px;
}

.empathy-card h3 { font-size: 19px; margin-bottom: 10px; }
.empathy-card p { color: var(--color-gray); font-size: 15px; margin: 0; }

.empathy-lead {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 19px;
  color: var(--color-text);
}

/* ---------- Ergebnis-Liste ---------- */

.result-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.result-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.result-list .check {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.result-list strong { color: var(--color-heading-green); }

/* ---------- Ablauf Timeline ---------- */

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.week-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 28px 26px;
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-card);
  position: relative;
}

.week-card .week-tag {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-primary);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.week-card h3 { font-size: 20px; margin-bottom: 8px; }
.week-card p { color: var(--color-text); font-size: 15px; margin: 0; }

.week-card.kickoff {
  background: var(--color-heading-green);
  border-left-color: var(--color-apricot);
  color: var(--color-white);
}
.week-card.kickoff h3, .week-card.kickoff .week-tag { color: var(--color-secondary); }
.week-card.kickoff p { color: #EAF0E7; }

/* ---------- Leistungen ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 30px 24px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.feature-card .icon {
  font-size: 30px;
  margin-bottom: 14px;
}

.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: var(--color-gray); font-size: 15px; margin: 0; }

/* ---------- Early bird banner ---------- */

.earlybird {
  background: linear-gradient(120deg, var(--color-heading-green), var(--color-primary));
  color: var(--color-white);
  border-radius: var(--radius-card);
  padding: clamp(30px, 5vw, 52px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.earlybird .eb-text { max-width: 620px; }
.earlybird .eb-badge {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-accent-dark);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.earlybird h2 { color: var(--color-white); font-size: clamp(24px, 3.4vw, 32px); margin-bottom: 12px; }
.earlybird p { color: #EAF0E7; margin-bottom: 0; font-size: 16px; }

/* ---------- Über Dee ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: center;
}

.about-portrait img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-text .quote {
  font-family: var(--font-script);
  color: var(--color-apricot);
  font-size: 30px;
  margin: 22px 0;
  line-height: 1.4;
}

/* ---------- Buchung / Preis ---------- */

.pricing-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid rgba(65, 102, 69, 0.15);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: clamp(30px, 5vw, 52px);
  text-align: center;
}

.pricing-card .program-name {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--color-heading-green);
  margin-bottom: 6px;
}

.pricing-card .program-dates {
  color: var(--color-gray);
  font-size: 15px;
  margin-bottom: 24px;
}

.price-placeholder {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-primary);
  background: var(--color-bg-warm);
  border: 1px dashed var(--color-primary);
  border-radius: var(--radius-btn);
  padding: 14px 28px;
  margin-bottom: 28px;
}

.pricing-card .cta-row { justify-content: center; margin-top: 8px; }

/* ---------- FAQ ---------- */

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(65, 102, 69, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--color-heading-green);
  font-weight: 700;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 20px;
}

.faq-question .plus {
  flex: none;
  font-size: 24px;
  color: var(--color-primary);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-question .plus { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 22px;
  color: var(--color-text);
  margin: 0;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--color-accent-dark);
  color: #D8D8D8;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 36px;
}

.site-footer h4 { color: var(--color-secondary); font-size: 16px; margin-bottom: 14px; }
.site-footer a { color: #D8D8D8; text-decoration: none; }
.site-footer a:hover { color: var(--color-secondary); }
.site-footer .logo img { height: 38px; margin-bottom: 14px; }
.site-footer p { color: #B0B0B0; font-size: 14px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 13px;
  color: #909090;
}
.footer-bottom .legal-links { display: flex; gap: 18px; }

/* ---------- Mobile nav ---------- */

.nav-cta-desktop { display: inline-block; }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .hero-content { padding: 90px 0 60px; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; }
  .earlybird { text-align: center; justify-content: center; }
  .earlybird .cta-row { justify-content: center; }
  .site-header .container { height: 70px; }
  .logo img { height: 36px; }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
