/* Lohne Lions – Vereins-Website
   Offizielle Farben: Hauptfarbe Navy #03315D, Verlauf #DBDBDB → #03315D */

:root {
  --navy: #03315d;
  --navy-deep: #021f3c;
  --steel: #5f758a;       /* abgedunkelter Verlauf-Mittelton, für WCAG-AA-Kontrast (4.5:1) auf Weiß angepasst */
  --steel-light: #a5b0bb; /* helle Verlaufsstufe, für Rahmen/Trennlinien */
  --grey: #dbdbdb;        /* helles Verlaufsende */
  --grad: linear-gradient(135deg, #dbdbdb 0%, #03315d 100%);
  --grad-h: linear-gradient(90deg, #dbdbdb 0%, #03315d 100%);
  --grad-v: linear-gradient(180deg, #dbdbdb 0%, #03315d 100%);
  --paper: #f7f8fb;
  --paper-alt: #eef1f6;
  --ink: #0f1720;
  --muted: #5b6a7d;
  --line: #e6e9ef;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Work Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

h1, h2, .brand-type {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  letter-spacing: 0.02em;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--steel); }

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

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Dev/preview banner */
.dev-banner {
  background: var(--grey);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 8px 16px;
}

/* Header / Nav */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--navy);
  border-bottom: 3px solid;
  border-image: var(--grad-h) 1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}
.brand:hover { color: inherit; }
.brand img.logo-icon { height: 48px; width: 48px; }

.brand-name { color: #ffffff; font-size: 22px; letter-spacing: 0.06em; line-height: 1; }
.brand-sub { color: #9db3cc; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

nav.main-nav { display: flex; align-items: center; gap: 28px; }

nav.main-nav a.nav-link {
  color: #c7d4e6;
  font-size: 16px;
  letter-spacing: 0.03em;
  font-family: "Bebas Neue", sans-serif;
  padding: 12px 2px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
nav.main-nav a.nav-link:hover,
nav.main-nav a.nav-link.active { color: #ffffff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
}
.btn-primary {
  background: var(--grey);
  color: var(--navy);
  padding: 12px 26px;
  font-size: 15px;
  transition: background 0.15s ease;
}
.btn-primary:hover { background: #ffffff; }
.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 10px 22px;
  font-size: 15px;
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); color: #ffffff; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

/* Hero */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero-target {
  position: absolute;
  right: -60px;
  top: -40px;
  width: 460px;
  opacity: 0.16;
  pointer-events: none;
}
.hero-inner { padding: 96px 24px 88px; position: relative; }
.hero-inner.compact { padding: 56px 24px 44px; }
.hero-eyebrow { color: var(--steel-light); font-size: 16px; letter-spacing: 0.14em; margin-bottom: 14px; }
.hero-title { color: #fff; font-size: 96px; line-height: 0.95; margin: 0 0 24px; max-width: 700px; }
.hero-title.small { font-size: 56px; margin: 0 0 14px; }
.hero-text { color: #c7d4e6; font-size: 19px; line-height: 1.6; margin: 0 0 36px; max-width: 560px; }
.hero-text.tight { font-size: 17px; max-width: 640px; margin: 0; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.stat-tile { background: #fff; padding: 28px 20px; text-align: center; }
.stat-value { color: var(--navy); font-size: 40px; line-height: 1; }
.stat-label { color: var(--muted); font-size: 13px; margin-top: 8px; line-height: 1.4; }

/* Sections */
section.block { padding: 64px 0 72px; }
section.block.tight { padding: 44px 0; }
section.block.alt { background: var(--paper-alt); }
section.block.white { background: #fff; border-top: 1px solid var(--line); }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-head h2 { color: var(--navy); font-size: 34px; margin: 0; }
h2.h-sm { color: var(--navy); font-size: 28px; margin: 0 0 28px; }
h2.h-xs { color: var(--navy); font-size: 26px; margin: 0 0 28px; }

/* Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card {
  border: 1px solid var(--line);
  padding: 22px 24px;
  background: #fbfbfc;
  transition: border-color 0.15s ease;
}
.card:hover { border-color: var(--steel); }
.card.news { border-top: 4px solid; border-image: var(--grad-h) 1; }
.card-date { color: var(--steel); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; margin-bottom: 10px; }
.card-title { color: var(--navy); font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.card-body { color: var(--muted); font-size: 14px; line-height: 1.55; }

.team-group { margin-bottom: 32px; }
.team-group-label { color: var(--navy); font-size: 15px; letter-spacing: 0.06em; margin-bottom: 14px; font-family: "Bebas Neue", sans-serif; }
.team-card {
  border: 1px solid var(--line);
  border-left: 4px solid;
  border-image: var(--grad-v) 1;
  padding: 18px 20px;
  background: #fbfbfc;
}
.team-card .name { color: var(--navy); font-size: 22px; font-family: "Bebas Neue", sans-serif; }

.panel-light { background: #fff; border: 1px solid var(--line); padding: 28px; }
.panel-dark { background: var(--navy); padding: 28px; }
.panel-dark .eyebrow { color: var(--steel-light); font-size: 14px; letter-spacing: 0.06em; margin-bottom: 10px; font-family: "Bebas Neue", sans-serif; }
.panel-dark .headline { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.panel-dark .sub { color: #9db3cc; font-size: 14px; margin-bottom: 14px; }
.panel-dark .fact { color: #c7d4e6; font-size: 14px; }
.panel-dark .foot-note { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--steel); color: #c7d4e6; font-size: 13px; line-height: 1.5; }

.training-row { display: flex; justify-content: space-between; border-bottom: 1px solid var(--paper-alt); padding-bottom: 12px; margin-bottom: 14px; }
.training-row:last-of-type { border-bottom: none; margin-bottom: 0; }
.training-row .who { font-weight: 600; color: var(--navy); }
.training-row .when { color: var(--muted); }
.location-note { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--paper-alt); color: var(--muted); font-size: 14px; }

/* News timeline */
.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--paper-alt);
}
.timeline-date { color: var(--steel); font-size: 16px; letter-spacing: 0.03em; font-family: "Bebas Neue", sans-serif; }
.timeline-title { color: var(--navy); font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.timeline-text { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* Contacts */
.contact-card .name { color: var(--navy); font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.contact-card .role { color: var(--steel); font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.contact-card .info { color: var(--muted); font-size: 14px; }

/* Sponsors */
.sponsor-row { display: flex; align-items: center; justify-content: space-between; padding: 44px 0; flex-wrap: wrap; gap: 20px; }
.sponsor-label { color: var(--muted); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.sponsor-names { display: flex; gap: 40px; flex-wrap: wrap; }
.sponsor-names span { color: var(--navy); font-size: 22px; font-family: "Bebas Neue", sans-serif; }

/* Footer */
footer.site-footer { background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; padding: 48px 24px 28px; }
.footer-brand { color: #fff; font-size: 22px; margin-bottom: 10px; }
.footer-about { color: #7d8fa6; font-size: 13px; line-height: 1.6; max-width: 340px; }
.footer-col-label { color: #9db3cc; font-size: 13px; letter-spacing: 0.06em; margin-bottom: 12px; font-family: "Bebas Neue", sans-serif; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: #c7d4e6; font-size: 14px; }
.footer-links a:hover { color: #ffffff; }
.footer-bottom { border-top: 1px solid #0a2a4d; padding: 18px 24px; text-align: center; color: #7f96b2; font-size: 12px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-logo img { height: 40px; width: 40px; }

/* Responsive */
@media (max-width: 720px) {
  .hero-title { font-size: 56px !important; }
  .hero-title.small { font-size: 44px !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .team-card-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  nav.main-nav { display: none; }
  .nav-toggle { display: flex; }
  body.nav-open nav.main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px 24px 28px;
    border-bottom: 3px solid;
    border-image: var(--grad-h) 1;
    gap: 16px;
  }
  .hero-target { width: 300px; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
}
