/* =========================================================================
   SportStart – Inhaltsseiten-Skin (Header/Footer/Standort)
   Farbwelt: Grün/Pink aus dem Design-Handoff (Basis) + Orange als warmer Akzent
   ("Mischung", 2026-07-01). Fonts wie im Splash: Baloo 2 (Headlines) / Nunito (Text).
   ========================================================================= */

:root {
    --green: #a3c020;      /* SportStart-Grün (Basis) */
    --green-deep: #8aa615;
    --green-tint: #f4f8e6; /* heller Grün-Hintergrund */
    --pink: #e5397f;       /* Akzent/CTA (wie Splash-Buttons) */
    --pink-dark: #c92d6c;
    --orange: #f28c00;     /* warmer Zweitakzent (Preise, Probestunde-CTA) */
    --orange-dark: #d67c00;
    --blue: #3f6fa3;       /* Links */
    --ink: #22320a;        /* Tinte/Dunkelgrün */
    --muted: #6b7a55;
    --line: #e6ebd6;
    --bg: #ffffff;
    --radius: 16px;
    --wrap: 1120px;
    --font-body: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --font-head: "Baloo 2", var(--font-body);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-weight: 600;
}

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

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.05; color: var(--ink); font-weight: 800; }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 26px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: transform .12s ease, box-shadow .16s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--pink); color: #fff; box-shadow: 0 10px 22px rgba(229,57,127,.28); }
.btn-primary:hover { background: var(--pink-dark); color: #fff; }
.btn-accent { background: var(--orange); color: #fff; box-shadow: 0 10px 22px rgba(242,140,0,.28); }
.btn-accent:hover { background: var(--orange-dark); color: #fff; }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--green); }
.btn-ghost:hover { background: var(--green-tint); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* --- Header --- */
.site-header { border-bottom: 3px solid var(--green); background: #fff; position: sticky; top: 0; z-index: 10; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0; }
.logo img { display: block; height: 48px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.main-nav > a { color: var(--ink); font-weight: 800; }
.main-nav > a:hover { color: var(--pink); text-decoration: none; }
.main-nav > a.btn { color: #fff; }
.main-nav > a.btn-ghost { color: var(--ink); }

/* --- Hero --- */
.hero { background: var(--green-tint); padding: 56px 0; border-bottom: 4px solid var(--green); }
.hero h1 { margin: 0 0 8px; }
.hero-adresse { color: var(--muted); font-size: 1.05rem; margin: 0; font-weight: 700; }
.hero-img { width: 100%; max-height: 340px; object-fit: cover; border-radius: var(--radius); margin-bottom: 24px; }

/* --- Intro --- */
.intro { padding: 40px 0; }
.prose { max-width: 720px; font-size: 1.08rem; }
.prose p { margin: 0 0 1em; }
.prose strong { color: var(--ink); }

/* --- Kurse --- */
.kurse { padding: 20px 0 64px; }
.kurse h2 { margin-bottom: 6px; }
.kurse-hint { color: var(--muted); margin-top: 0; font-weight: 700; }
.kurs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 18px; margin: 26px 0; }
.kurs-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 20px; text-align: center; background: #fff; box-shadow: 0 6px 18px rgba(40,55,10,.06); transition: transform .12s ease, box-shadow .16s ease; }
.kurs-card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(40,55,10,.12); }
.kurs-figur { height: 90px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.kurs-figur img { max-height: 90px; width: auto; }
.kurs-figur-fallback { width: 64px; height: 64px; border-radius: 50%; background: var(--green); color: #fff; font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.kurs-card h3 { margin: 4px 0; }
.kurs-zeit { color: var(--muted); margin: 0 0 10px; font-size: .95rem; font-weight: 700; }
.kurs-preis { display: flex; gap: 8px; justify-content: center; align-items: baseline; margin: 0; }
.preis-voll { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--orange); }
.preis-erm { color: var(--pink); font-weight: 800; }
.preis-erm::before { content: "/ "; color: var(--muted); font-weight: 600; }
.kurse-leer { color: var(--muted); }
.kurse-quelle { color: var(--muted); font-size: .9rem; border-left: 3px solid var(--orange); padding-left: 12px; }
.kurse-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* --- Redaktionelle Seiten --- */
.lead { font-size: 1.2rem; color: var(--ink); font-weight: 700; }
.page-body { padding: 8px 0 56px; }
.page-body .prose { max-width: 760px; }
.prose h2 { margin: 1.6em 0 .4em; }
.prose h3 { margin: 1.2em 0 .3em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin: .3em 0; }
.prose a { color: var(--pink); font-weight: 700; }

/* --- News --- */
.news-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; margin-bottom: 18px; background: #fff; box-shadow: 0 6px 18px rgba(40,55,10,.05); }
.news-date { color: var(--orange-dark); font-weight: 800; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 4px; }
.news-card h2 { margin: 0 0 8px; }
.news-card h2 a { color: var(--ink); text-decoration: none; }
.news-card h2 a:hover { color: var(--pink); }
.news-more { font-weight: 800; color: var(--pink); }

/* --- Footer --- */
.site-footer { background: var(--ink); color: #d7e0c2; padding: 40px 0; margin-top: 40px; }
.footer-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; font-family: var(--font-head); font-size: 1.2rem; color: #fff; }
.footer-nav { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.footer-nav a { color: #d7e0c2; font-weight: 700; }
.footer-nav a:hover { color: #fff; }
.legal-nav { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 14px; }
.legal-nav a { color: #fff; }
.copyright { color: #9db07a; font-size: .85rem; margin: 0; }

@media (max-width: 640px) {
    .header-inner { flex-direction: column; align-items: flex-start; }
    .main-nav { gap: 12px; }
}
