/* ================================================================
   OLYMPIA Hub – style.css
   ================================================================ */

:root {
  --navy:       #1E293B;
  --navy-mid:   #263347;
  --navy-light: #334155;
  --blue:       #0EA5E9;
  --blue-dark:  #0284C7;
  --blue-glow:  rgba(14,165,233,.18);
  --white:      #ffffff;
  --offwhite:   #F8FAFC;
  --gray-100:   #F1F5F9;
  --gray-200:   #E2E8F0;
  --gray-400:   #94A3B8;
  --gray-600:   #475569;
  --gray-800:   #1E293B;
  --text:       #0F172A;
  --text-muted: #64748B;
  --border:     rgba(0,0,0,.08);
  --shadow:     0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.14);
  --nav-h:      72px;
  --font-hero:  'Bebas Neue', sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;
  --r:          12px;
  --r-lg:       18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--offwhite);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .8rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--blue);
}
.section-title {
  font-family: var(--font-hero);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: .03em;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 1.2rem;
}
.section-title em {
  font-style: normal;
  color: var(--blue);
}
.section-sub {
  font-size: .95rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-inner { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .8rem 1.9rem;
  background: var(--blue);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background .2s, transform .18s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(14,165,233,.4);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,165,233,.45); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: .8rem 1.9rem;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  font-size: .85rem;
  font-weight: 600;
  border-radius: 8px;
  transition: border-color .2s, color .2s, background .2s, transform .18s;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-glow); transform: translateY(-2px); }
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  padding: .8rem 1.9rem;
  border: 1.5px solid rgba(255,255,255,.4);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background .2s, border-color .2s, transform .18s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }

/* ── NAV ─────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s;
}
#navbar.scrolled {
  background: rgba(15,23,42,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: white;
  flex-shrink: 0;
}
.logo-hex { color: var(--blue); font-size: 1.4rem; }
.nav-logo strong { color: var(--blue); font-weight: 700; }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none; margin-left: auto;
}
.nav-links a {
  font-size: .82rem; font-weight: 500;
  color: rgba(255,255,255,.6);
  letter-spacing: .03em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  margin-left: 1.5rem;
  padding: .55rem 1.4rem;
  background: var(--blue);
  color: white;
  font-size: .8rem; font-weight: 600;
  border-radius: 7px;
  transition: background .2s;
}
.nav-cta:hover { background: var(--blue-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; margin-left: auto; padding: .5rem; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: white; }
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 1rem 2rem; font-size: .9rem;
  color: rgba(255,255,255,.65);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, background .2s;
}
.mobile-menu a:hover { color: var(--blue); background: rgba(14,165,233,.08); }

/* ── HERO ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img { filter: brightness(.45) saturate(.9); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,22,38,.85) 0%, rgba(14,22,38,.5) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) 2rem 6rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(14,165,233,.18);
  border: 1px solid rgba(14,165,233,.35);
  color: var(--blue);
  font-size: .72rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.hero-title {
  font-family: var(--font-hero);
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: .04em;
  line-height: .95;
  color: white;
  margin-bottom: 1.8rem;
}
.hero-title em { font-style: normal; color: var(--blue); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }

.hero-stats {
  display: flex; gap: 0;
  padding: 2rem 2.5rem;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  width: fit-content;
}
.stat-item { display: flex; flex-direction: column; gap: .2rem; padding: 0 2rem; }
.stat-item:first-child { padding-left: 0; }
.stat-n {
  font-family: var(--font-hero);
  font-size: 1.9rem;
  letter-spacing: .05em;
  color: var(--blue);
  line-height: 1;
}
.stat-l { font-size: .72rem; font-weight: 500; color: rgba(255,255,255,.55); letter-spacing: .06em; }
.stat-sep { width: 1px; background: rgba(255,255,255,.12); align-self: stretch; }

/* Live ticker */
.live-ticker {
  position: absolute; bottom: 2rem; right: 2rem; z-index: 2;
  display: flex; align-items: center; gap: .6rem;
  background: rgba(15,23,42,.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(14,165,233,.3);
  color: rgba(255,255,255,.85);
  font-size: .8rem; font-weight: 500;
  padding: .6rem 1.2rem;
  border-radius: 100px;
}
.ticker-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.7)} }

/* ── SPORTARTEN ──────────────────────────────────────────────── */
#sportarten { padding: 8rem 0; background: var(--white); }

/* Filter Tabs */
.filter-tabs {
  display: flex; justify-content: center; gap: .5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.filter-btn {
  padding: .55rem 1.4rem;
  border: 1.5px solid var(--gray-200);
  color: var(--text-muted);
  font-size: .8rem; font-weight: 600;
  border-radius: 100px;
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: white; }

/* Sports Grid */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.sport-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .22s, box-shadow .22s, opacity .3s;
}
.sport-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.sport-card.hidden { display: none; }
.sport-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.sport-img img { transition: transform .5s ease; }
.sport-card:hover .sport-img img { transform: scale(1.06); }
.sport-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--navy);
  color: white;
  font-size: .65rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 100px;
}
.sport-body { padding: 1.5rem; }
.sport-icon { font-size: 1.6rem; margin-bottom: .7rem; }
.sport-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; color: var(--navy); }
.sport-body p { font-size: .85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.sport-meta {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: .75rem; font-weight: 600;
  color: var(--gray-400); border-top: 1px solid var(--gray-100); padding-top: 1rem;
}
.sport-cta { margin-left: auto; color: var(--blue); font-weight: 700; transition: gap .2s; }
.sport-cta:hover { text-decoration: underline; }

/* ── BUCHUNG ─────────────────────────────────────────────────── */
#buchung { padding: 8rem 0; background: var(--navy); }
#buchung .section-label { color: var(--blue); }
#buchung .section-label::before { background: var(--blue); }
#buchung .section-title { color: white; }
#buchung .section-sub { color: rgba(255,255,255,.55); }

.buchung-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
.buchung-form-area {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

/* Steps */
.steps {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 2rem;
}
.step {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600;
  color: var(--gray-400); padding: .5rem 1rem;
  border-radius: 100px;
  transition: color .3s, background .3s;
}
.step span {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-400);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700;
  transition: background .3s, color .3s;
}
.step.active span { background: var(--blue); color: white; }
.step.active { color: var(--navy); }
.step.done span { background: var(--navy); color: white; }
.step-line { flex: 1; height: 1px; background: var(--gray-200); }

.form-step { display: none; flex-direction: column; gap: 1.2rem; }
.form-step.active { display: flex; }
.step-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }

/* Sport Select */
.sport-select-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem;
}
.sport-sel-btn {
  padding: .9rem .8rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: .83rem; font-weight: 600;
  color: var(--gray-600);
  text-align: center;
  transition: border-color .2s, color .2s, background .2s;
}
.sport-sel-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-glow); }
.sport-sel-btn.selected { background: var(--navy); border-color: var(--navy); color: white; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
label { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-600); }
input, select {
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-body); font-size: .9rem;
  color: var(--text); background: var(--white);
  outline: none; width: 100%;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%2394A3B8' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem; cursor: pointer;
}
input:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(14,165,233,.12); }
input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .5; }

/* Capacity Display */
.capacity-display {
  background: var(--offwhite);
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.4rem;
}
.cap-header {
  display: flex; align-items: center; gap: .7rem;
  margin-bottom: .8rem;
}
.cap-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
  animation: pulse 1.8s infinite;
}
.cap-title { font-size: .78rem; font-weight: 600; color: var(--gray-600); flex: 1; }
.cap-pct { font-family: var(--font-hero); font-size: 1.5rem; letter-spacing: .05em; color: var(--navy); }
.cap-bar-wrap { margin-bottom: .8rem; }
.cap-bar {
  height: 8px; background: var(--gray-200);
  border-radius: 100px; overflow: hidden;
}
.cap-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #38BDF8);
  border-radius: 100px;
  transition: width .6s ease;
}
.cap-detail { font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: .8rem; }
.persons-row {
  display: flex; flex-wrap: wrap; gap: 4px;
}
.person-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--blue); opacity: .7;
  transition: opacity .3s;
}
.person-dot.empty { background: var(--gray-200); opacity: 1; }

.form-btns { display: flex; gap: 1rem; }
.btn-next { margin-top: .5rem; }
.btn-next:disabled { opacity: .45; cursor: not-allowed; transform: none !important; }

.booking-summary {
  background: var(--blue-glow);
  border: 1px solid rgba(14,165,233,.25);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-size: .88rem;
  color: var(--navy);
  line-height: 1.65;
}
.form-error { font-size: .82rem; color: #DC2626; min-height: 1rem; }

.booking-success {
  display: none; text-align: center; padding: 3rem 1.5rem;
}
.booking-success.visible { display: block; }
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--blue); color: white;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.booking-success h3 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: .8rem; }
.booking-success p { font-size: .9rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }

/* Live Panel */
.buchung-live { display: flex; flex-direction: column; gap: 1.2rem; }
.live-panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 1.5rem;
}
.live-panel.mt { }
.lp-header {
  display: flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  margin-bottom: 1.2rem;
}
.lp-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); animation: pulse 1.8s infinite; }
.lp-slot {
  display: flex; align-items: center; gap: .8rem;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .82rem; color: rgba(255,255,255,.75);
}
.lp-slot:last-child { border-bottom: none; }
.lp-slot-time { min-width: 100px; font-weight: 600; }
.lp-slot-bar { flex: 1; height: 5px; background: rgba(255,255,255,.1); border-radius: 100px; overflow: hidden; }
.lp-slot-fill { height: 100%; border-radius: 100px; }
.lp-slot-num { min-width: 38px; text-align: right; font-size: .75rem; color: rgba(255,255,255,.45); }
.lp-info-rows { display: flex; flex-direction: column; gap: .5rem; }
.lp-row {
  display: flex; justify-content: space-between;
  font-size: .84rem; color: rgba(255,255,255,.6);
  padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.lp-row:last-child { border-bottom: none; }
.lp-row.accent { color: var(--blue); font-weight: 600; }

/* ── KURSE ───────────────────────────────────────────────────── */
#kurse { padding: 8rem 0; background: var(--gray-100); }
.kurse-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.kurs-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .22s, box-shadow .22s;
}
.kurs-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.kurs-img { height: 220px; overflow: hidden; }
.kurs-img img { transition: transform .5s; }
.kurs-card:hover .kurs-img img { transform: scale(1.06); }
.kurs-body { padding: 1.5rem; }
.kurs-tag {
  display: inline-block;
  background: var(--blue-glow);
  color: var(--blue);
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .75rem; border-radius: 100px;
  margin-bottom: .8rem;
}
.kurs-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.kurs-body p { font-size: .85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.kurs-meta {
  display: flex; gap: .75rem; flex-wrap: wrap;
  font-size: .74rem; font-weight: 600; color: var(--gray-400);
  border-top: 1px solid var(--gray-100); padding-top: 1rem;
}

/* ── ÜBER UNS ────────────────────────────────────────────────── */
#ueber { padding: 8rem 0; background: var(--white); }
.ueber-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.ueber-img {
  position: relative; height: 520px; border-radius: var(--r-lg); overflow: hidden;
}
.ueber-img img { filter: brightness(.9); }
.ueber-quote {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(15,23,42,.85); backdrop-filter: blur(8px);
  color: white; font-size: .88rem; font-style: italic;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--blue);
}
.ueber-p { font-size: .93rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.2rem; }
.ueber-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2rem; }
.value-item {
  background: var(--offwhite);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 1.2rem;
  display: flex; flex-direction: column; gap: .3rem;
  transition: border-color .2s, box-shadow .2s;
}
.value-item:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(14,165,233,.1); }
.value-icon { font-size: 1.4rem; }
.value-title { font-size: .85rem; font-weight: 700; color: var(--navy); }
.value-text { font-size: .78rem; color: var(--text-muted); line-height: 1.5; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer { background: var(--navy); }
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-logo { margin-bottom: .8rem; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.45); letter-spacing: .06em; text-transform: uppercase; transition: color .2s; }
.footer-social a:hover { color: var(--blue); }
.footer-col { display: flex; flex-direction: column; gap: .6rem; }
.fc-title { font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: .5rem; }
.footer-col a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); text-align: center; padding: 1.5rem 2rem; }
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.25); }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .buchung-wrap { grid-template-columns: 1fr; }
  .buchung-live { flex-direction: row; flex-wrap: wrap; }
  .live-panel { flex: 1; min-width: 240px; }
  .kurse-grid { grid-template-columns: repeat(2, 1fr); }
  .ueber-inner { grid-template-columns: 1fr; }
  .ueber-img { height: 300px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-stats { flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .sports-grid { grid-template-columns: 1fr; }
  .kurse-grid { grid-template-columns: 1fr; }
  .sport-select-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .ueber-values { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .section-inner { padding: 0 1.5rem; }
  #sportarten, #buchung, #kurse, #ueber { padding: 5rem 0; }
  .live-ticker { display: none; }
}
