/* ============================================
   Bewegungswerk e.V. – Landing Page Styles
   Minimalistic, outdoor/sports, natural colors
   ============================================ */

:root {
  /* Dunkelblau, Sonnengelb, Weiß */
  --color-dark-blue: #1a365d;
  --color-dark-blue-light: #2d4a7c;
  --color-sun-yellow: #fbbf24;
  --color-sun-yellow-dark: #f59e0b;
  --color-white: #ffffff;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-text: #1a365d;
  --color-text-muted: #475569;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Typography */
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  
  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  /* Transitions */
  --transition: 0.2s ease;
}

/* Skip-Link (Barrierefreiheit) */
.skip-link {
  position: absolute;
  top: -3rem;
  left: var(--space-md);
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--color-dark-blue);
  color: var(--color-white);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: var(--space-md);
  outline: 2px solid var(--color-sun-yellow);
  outline-offset: 2px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--color-dark-blue);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.nav__links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-md);
}

.nav__links a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  transition: opacity var(--transition);
}

.nav__links a:hover {
  opacity: 0.85;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

#nav-toggle:checked ~ .nav__links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-dark-blue);
  padding: var(--space-md);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

#nav-toggle:checked ~ .nav__links li {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

#nav-toggle:checked ~ .nav__links li:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .nav__toggle {
    display: none;
  }

  #nav-toggle:checked ~ .nav__links {
    position: static;
    padding: 0;
    box-shadow: none;
  }

  #nav-toggle:checked ~ .nav__links li {
    padding: 0;
    border-bottom: none;
  }
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  padding-top: 56px; /* Platz für fixierte Navigation */
}

/* Container */
.container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--wide {
  max-width: 960px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, var(--color-bg-alt) 0%, var(--color-white) 50%, var(--color-white) 100%);
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  position: relative;
}

.hero__image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(230,232,235,0.5) 0%, rgba(240,241,243,0.92) 100%);
}

.hero__image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.hero__content {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.hero__logo-box {
  background: rgba(26, 54, 93, 0.65);
  padding: 0 0.6rem;
  margin-bottom: var(--space-sm);
  display: inline-block;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.hero__logo {
  width: 480px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .hero__logo {
    width: 640px;
  }
}

.hero__headline {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark-blue);
  line-height: 1.4;
  margin-bottom: var(--space-md);
}

@media (min-width: 480px) {
  .hero__headline {
    font-size: 1.5rem;
  }
}

.hero__cta-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark-blue);
  margin-bottom: var(--space-lg);
}

.hero__leitgedanke {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-top: 0;
  margin-bottom: var(--space-md);
  font-style: italic;
  opacity: 0.95;
}

.hero__text {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: var(--space-xl);
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
}

.hero--small {
  min-height: 40vh;
  padding: var(--space-3xl) var(--space-md);
}

/* Logo-Integration Über uns: wie Hero, 30% kleiner */
.hero__logo-link {
  display: block;
  text-decoration: none;
}

.hero--small .hero__logo-box {
  padding: 0 0.42rem;
}

.hero--small .hero__logo {
  width: 336px;
}

@media (min-width: 768px) {
  .hero--small .hero__logo {
    width: 448px;
  }
}

@media (min-width: 480px) {
  .hero__buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 1rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--color-sun-yellow);
  color: var(--color-dark-blue);
  box-shadow: 0 4px 14px rgba(251, 191, 36, 0.4);
}

.btn--primary:hover {
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-dark-blue);
  border: 2px solid var(--color-dark-blue);
}

.btn--secondary:hover {
  background: var(--color-bg-alt);
}

.btn--full {
  width: 100%;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--space-3xl) 0;
}

.section:nth-child(even) {
  background-color: var(--color-bg-alt);
}

.section__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.section__paragraph {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.section__intro {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.subsection__heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.course-info {
  margin-bottom: var(--space-xl);
}

.course-info .download-link {
  font-weight: 600;
  color: var(--color-dark-blue);
}

.course-info p {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.section__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  text-align: center;
  margin-top: var(--space-xl);
}

.section__image {
  width: 100%;
  max-width: 800px;
  border-radius: var(--radius-lg);
  margin: 0 auto var(--space-xl);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(26, 54, 93, 0.12);
}

.section__image svg {
  width: 100%;
  height: auto;
  display: block;
}

.section__image--small {
  max-width: 600px;
}

/* ============================================
   VISION SECTION
   ============================================ */
.vision__layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .vision__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-2xl);
  }
}

.vision__text {
  flex: 1;
}

.vision__benefits {
  background: var(--color-white);
  border: 2px solid var(--color-sun-yellow);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 4px 20px rgba(26, 54, 93, 0.08);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .vision__benefits {
    width: 360px;
  }
}

.vision__benefits-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.vision__benefits-grid {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.vision__box {
  padding: var(--space-md);
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-sun-yellow);
}

.vision__box-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.vision__box-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vision__box-list li {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: var(--space-xs);
  padding-left: 1rem;
  position: relative;
}

.vision__box-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--color-sun-yellow);
  font-weight: bold;
}

.vision__box-list li:last-child {
  margin-bottom: 0;
}

.vision__price-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: var(--space-xs);
  font-size: 0.9rem;
}

.vision__price-row span:first-child {
  font-weight: 600;
  color: var(--color-dark-blue);
}

.vision__price-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  width: 100%;
  margin-top: 0.15rem;
  margin-bottom: var(--space-xs);
}

.vision__price-row:last-of-type .vision__price-note {
  margin-bottom: 0;
}

.vision__pricing-option {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: var(--space-md);
}

.vision__pricing-option:last-of-type {
  margin-bottom: 0;
}

.vision__pricing-option strong {
  font-size: 0.9rem;
  color: var(--color-dark-blue);
}

.vision__pricing-option span {
  font-size: 0.9rem;
  color: var(--color-text);
}

.vision__pricing-reg {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.vision__benefits-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: var(--space-sm);
}

.vision__benefits-comparison {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-style: normal;
  padding-top: var(--space-sm);
  margin-top: 0;
  border-top: 1px solid #e2e8f0;
}

/* ============================================
   PROGRAM GALLERY
   ============================================ */
.program-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

@media (min-width: 600px) {
  .program-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.program-gallery__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(26, 54, 93, 0.1);
}

/* ============================================
   ABOUT TEAM (Über-uns Seite)
   ============================================ */
.about-team {
  margin-top: var(--space-2xl);
}

.about-team__member {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 600px) {
  .about-team__member {
    flex-direction: row;
    align-items: flex-start;
  }
}

.about-team__img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.about-team__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-bottom: var(--space-xs);
}

/* ============================================
   BULLET LIST
   ============================================ */
.bullet-list {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.bullet-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: var(--space-sm);
}

.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--color-sun-yellow);
  border-radius: 50%;
}

@media (min-width: 600px) {
  .bullet-list--two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 var(--space-xl);
  }
}

/* ============================================
   INFO CARDS
   ============================================ */
.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

@media (min-width: 480px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 640px) {
  .info-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(26, 54, 93, 0.08);
  text-align: center;
}

.info-card__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.info-card__value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
}

/* ============================================
   REGISTRATION FORM
   ============================================ */
.form-note {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.form-note a {
  color: var(--color-dark-blue);
  text-decoration: underline;
}

.registration-form {
  max-width: 480px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.form-group input {
  width: 100%;
  padding: 1rem var(--space-md);
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  background: var(--color-white);
  transition: border-color var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-dark-blue);
}

.form-group input::placeholder {
  color: var(--color-text-muted);
  opacity: 0.7;
}

.registration-form .btn {
  margin-top: var(--space-sm);
}

/* ============================================
   KONTAKT
   ============================================ */
.contact-block {
  margin-bottom: var(--space-xl);
}

.contact-link {
  color: var(--color-dark-blue);
  font-weight: 600;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.contact-map {
  margin-top: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Program badge – max 30 Plätze */
.program-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.program-badge__icon {
  font-size: 1rem;
  color: var(--color-dark-blue);
  opacity: 0.8;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 640px;
  margin: 0 auto var(--space-lg);
}

.faq-list dt {
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

.faq-list dt:first-child {
  margin-top: 0;
}

.faq-list dd {
  margin-left: 0;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-dark-blue);
  color: var(--color-white);
  padding: var(--space-xl) 0;
}

.footer__vision {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-sun-yellow);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

@media (min-width: 480px) {
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__brand {
  display: flex;
  align-items: center;
}

.footer__logo {
  width: 120px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .footer__logo {
    width: 160px;
  }
}

.footer__nav {
  display: flex;
  gap: var(--space-lg);
}

.footer__nav a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.footer__nav a:hover {
  opacity: 1;
  text-decoration: underline;
}
