/* =========================================================
   GRUNDLAGEN
   ========================================================= */

:root {
    --verein-rot: #c62828;
    --text-schwarz: #000;
    --grau-hell: #f5f5f5;
}

/* Grundschrift */
body {
    color: var(--text-schwarz);
}

/* =========================================================
   LINKS
   ========================================================= */

a {
    color: var(--verein-rot);
    text-decoration-thickness: 2px;
}

a:hover,
a:focus {
    color: #9b1f1f;
    text-decoration: underline;
}

/* =========================================================
   HEADER & MENÜ (Cassiopeia-konform!)
   ========================================================= */

/* Header ruhig */
.header {
    background: var(--grau-hell);
    border-bottom: 4px solid var(--verein-rot);
}

/* Menü */
.navbar-nav .nav-link {
    color: #111;
    font-weight: 500;
    padding: 0.75rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--verein-rot);
    text-decoration: underline;
}

.navbar-nav .nav-link.active {
    color: var(--verein-rot);
    font-weight: 600;
    border-bottom: 3px solid var(--verein-rot);
}

/* =========================================================
   ROTER KASTEN (Modul, NICHT Header!)
   ========================================================= */

.verein-headerbox {
    background-color: var(--verein-rot);
    color: #fff;
    padding: 1.5rem 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

/* =========================================================
   ÜBERSCHRIFTEN
   ========================================================= */

h1 {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--verein-rot);
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

/* =========================================================
   TEXT & LAYOUT
   ========================================================= */

p {
    margin-bottom: 1.1rem;
}

ul,
ol {
    margin-bottom: 1.2rem;
}

/* Lesbarkeit begrenzen */
main {
    max-width: 100%;
}

/* =====================================================*
