:root {
  --red: #c62f3a;
  --dark: #46506a;
  --dark-2: #2f3548;
  --blue-soft: #8090c5;
  --bg: #f4f5f7;
  --white: #ffffff;
  --text: #20242f;
  --border: rgba(47, 53, 72, 0.12);
  --shadow: 0 16px 34px rgba(20, 24, 38, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Barlow", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.narrow {
  width: min(840px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}
.brand img {
  width: 180px;
  border-radius: 10px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 600;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  box-shadow: var(--shadow);
}
.btn-small {
  min-height: 42px;
  padding: 0 18px;
}
.btn-secondary {
  background: var(--white);
  color: var(--dark-2);
  border: 2px solid var(--dark-2);
  box-shadow: none;
}

.hero {
  background:
    linear-gradient(135deg, rgba(198, 47, 58, 0.92), rgba(198, 47, 58, 0.8)),
    url("assets/backgrd_rot_zielflagge.jpeg") center/cover no-repeat;
  padding: 72px 0 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}
.card-soft {
  background: rgba(255, 255, 255, 0.93);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.eyebrow,
.section-kicker {
  color: var(--blue-soft);
  font-style: italic;
  font-weight: 700;
  margin: 0 0 10px;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.95;
  margin: 0 0 14px;
  text-transform: uppercase;
  color: var(--dark-2);
}
.hero-meta {
  margin: 0 0 14px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 800;
  color: var(--red);
}
.hero-text {
  margin: 0;
  max-width: 55ch;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-badges span {
  background: rgba(47, 53, 72, 0.08);
  color: var(--dark-2);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
}
.hero-poster img {
  width: 100%;
  border-radius: 30px;
  border: 6px solid rgba(255,255,255,0.74);
  box-shadow: var(--shadow);
}

.quickfacts {
  background: var(--bg);
  padding: 56px 0 24px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.info-card h2,
.content-section h2,
.downloads h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 2vw, 2.5rem);
  color: var(--dark-2);
}
.info-card ul,
.schedule-card ul {
  margin: 0;
  padding-left: 18px;
}
.info-card li { margin-bottom: 10px; }
.accent-card {
  background: linear-gradient(180deg, var(--dark), var(--dark-2));
  color: var(--white);
}
.accent-card h2,
.accent-card .price-note {
  color: var(--white);
}
.price-note {
  font-weight: 700;
}

.content-section {
  padding: 72px 0;
}
.alt-bg {
  background: var(--bg);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.align-center {
  align-items: center;
}
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}
.schedule-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.schedule-card h3 {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 1.25rem;
}
.schedule-card li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.schedule-card li:last-child {
  border-bottom: 0;
}

.class-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.class-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.class-item strong {
  color: var(--red);
  white-space: nowrap;
}
.class-item.wide {
  grid-column: 1 / -1;
}
.helper-text {
  margin: 18px 0 0;
  color: var(--dark);
  font-weight: 600;
}

.image-card img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.party-strip {
  background:
    linear-gradient(rgba(244,245,247,0.94), rgba(244,245,247,0.98)),
    url("assets/backgrd_rot_zielflagge2.jpeg") center/cover no-repeat;
}
.party-note {
  display: inline-block;
  margin-top: 10px;
  background: var(--red);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.downloads {
  padding: 76px 0;
  background: linear-gradient(135deg, var(--white), var(--dark));
  color: var(--white);
}
.downloads-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.download-buttons {
  display: grid;
  gap: 16px;
}
.download-card {
  display: block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  border-radius: 24px;
  padding: 22px;
  font-size: 1.1rem;
  font-weight: 700;
}
.download-card span {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.page-hero {
  padding: 56px 0 18px;
  background: var(--bg);
}
.faq-list {
  padding: 20px 0 72px;
}
.faq-list details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}
.faq-list summary {
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-2);
}
.faq-list p {
  margin: 14px 0 0;
}
.faq-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.site-footer {
  background: var(--dark-2);
  color: var(--white);
  padding: 20px 0;
}
.footer-wrap {
  display: flex;
  flex-direction: column;     
  align-items: flex-start;    
  gap: 10px;                  
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-3,
  .two-col,
  .downloads-wrap,
  .schedule-grid,
  .class-grid {
    grid-template-columns: 1fr;
  }

  .class-item,
  .footer-wrap,
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 12px;
  }

  .brand img {
    width: 150px;
  }

  .hero {
    padding-top: 40px;
  }

  .card-soft {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .container,
  .narrow {
    width: min(100% - 20px, 1120px);
  }

  .site-header {
    position: static;
  }

  .hero h1,
  .page-hero h1 {
    line-height: 1;
  }

  .schedule-card li,
  .class-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn,
  .btn-small {
    width: 100%;
  }
}


.faq-note {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  margin: 0 0 20px;
  font-weight: 600;
}
.faq-list details p {
  margin: 0 0 12px;
}
.faq-spacer {
  height: 10px;
}
