:root {
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-alt: #F7F7F8;
  --border: #E6E7EA;
  --text: #111214;
  --text-secondary: #6B7078;
  --text-on-dark: #FFFFFF;

  /* Blau tritt zurück: nur noch für vereinzelte Marken-Akzente. */
  --primary: #1F3A5C;
  --primary-dark: #152840;
  --primary-light: #3A5980;

  /* Rot ist der einzige "aktiv/Akzent"-Ton. */
  --accent: #A83A32;
  --accent-dark: #7C2A24;
  --accent-light: #C4564D;
  --accent-muted: #F5E4E2;

  --shadow-card: 0 2px 10px rgba(15, 17, 21, 0.06);

  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --wrap: 1120px;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}

p { margin: 0; color: var(--text-secondary); }

a { color: inherit; text-decoration: none; }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  display: block;
  border-radius: 22%;
  width: 40px;
  height: 40px;
}
.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.01em;
  color: var(--text);
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.nav a:hover { color: var(--accent); }
.nav-cta {
  background: var(--text);
  color: var(--text-on-dark) !important;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
}
.nav-cta:hover { background: var(--accent); }

/* Hero */
.hero {
  position: relative;
  padding: 88px 0 0;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; padding-bottom: 72px; }

.badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  background: var(--accent-muted);
  border: 1px solid #EFC9C3;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(44px, 8vw, 84px);
  color: var(--text);
}
.hero-accent { color: var(--accent); }

.lede {
  max-width: 560px;
  font-size: 19px;
  color: var(--text-secondary);
  margin-top: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn-primary {
  background: var(--accent);
  color: var(--text-on-dark);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-ghost {
  border-color: var(--text);
  color: var(--text);
}
.btn-ghost:hover { background: var(--text); color: var(--text-on-dark); }
.btn-block { width: 100%; }

/* Section titles */
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text);
  margin-bottom: 44px;
}

/* Content sections — one consistent light rhythm throughout, alternating
   plain white and --surface-alt instead of the old dark inverted band
   (which didn't match the app, which never uses a dark surface). */
.content-section { padding: 88px 0; }
.content-section-alt { background: var(--surface-alt); }

/* Cards — same visual language everywhere on the page (and the same one
   the app itself uses: white surface, subtle border, radius-lg, soft
   shadow), instead of three different card treatments. */
.card-grid {
  display: grid;
  gap: 24px;
}
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
}
.card-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 10px;
}
.card h3 {
  font-size: 20px;
  color: var(--text);
  text-transform: none;
  margin-bottom: 8px;
}
.card p { font-size: 15px; }

/* Clubs */
.clubs-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.clubs-text p { font-size: 16px; margin-top: 18px; max-width: 520px; }
.clubs-sponsor {
  margin-top: 24px;
  font-weight: 600;
  color: var(--accent-dark) !important;
}
.clubs-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--text) !important;
}
.clubs-card-copy { margin-top: 8px; margin-bottom: 22px; font-size: 14px; }

/* Footer */
.site-footer {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 40px;
}
.brand-footer { margin-bottom: 12px; }
.brand-mark-footer { width: 32px; height: 32px; }
.footer-copy { font-size: 14px; max-width: 320px; }
.footer-contact p { font-size: 14px; margin-bottom: 6px; }
.footer-mail { font-weight: 700; color: var(--text); font-size: 15px; }
.footer-mail:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-legal-link { color: var(--text-secondary); text-decoration: underline; }
.footer-legal-link:hover { color: var(--accent); }

/* Legal pages (Impressum, ...) */
.legal-wrap { max-width: 640px; }
.legal h1 { margin-bottom: 32px; }
.legal h2 {
  font-size: 16px;
  text-transform: none;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 8px;
}
.legal h2:first-of-type { margin-top: 0; }
.legal p { font-size: 15px; line-height: 1.6; }
.legal-link { color: var(--accent); text-decoration: underline; }
.legal-link:hover { color: var(--accent-dark); }

/* Responsive */
@media (max-width: 860px) {
  .nav { gap: 16px; }
  .nav a:not(.nav-cta) { display: none; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr 1fr; }
  .clubs-inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .card-grid-4 { grid-template-columns: 1fr; }
}
