/* =========================================================
   VARIABLEN
   ========================================================= */

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

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

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

/* =========================================================
   HEADER (Cassiopeia-Standard + roter Streifen)
   ========================================================= */

.header {
    background: var(--grau-hell);
    border-bottom: 3px solid var(--verein-rot);
}

/* =========================================================
   HAUPTMENÜ (Joomla mod-menu, NICHT Bootstrap)
   ========================================================= */

/* Menü-Liste */
.header .mod-menu {
    justify-content: center;
}

.container-nav .mod-menu {
    display: flex;
    gap: 0.25rem;
    padding: 0.75rem 0;
    margin: 0;
    list-style: none;
}

/* Menü-Links */
.container-nav .mod-menu a {
    color: #000;
    font-weight: 500;
    padding: 0.5rem 1rem;
    text-decoration: none;
}

/* Hover (Maus) */
.container-nav .mod-menu a:hover {
    color: var(--verein-rot);
    text-decoration: underline;
}

/* Aktiver Menüpunkt */
.container-nav .mod-menu li.active > a,
.container-nav .mod-menu li.current > a {
    color: #000;
    font-weight: 600;
    border-bottom: 2px solid var(--verein-rot);
}

/* Tastatur-Fokus (Tab) */
.container-nav .mod-menu a:focus-visible {
    outline: 3px solid var(--verein-rot);
    outline-offset: 3px;
}

/* Kein doppelter Fokus */
.container-nav .mod-menu a:focus {
    outline: none;
}

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

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

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

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

h1 {
    margin-top: 0.6rem;
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.6rem;
    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;
}

main {
    max-width: 100%;
    font-size: 1.2rem;
}

/* =========================================================
   KONTAKTSEITE – AUFRÄUMEN
   ========================================================= */

.com-contact .page-header,
.com-contact h1,
.com-contact h2,
.com-contact legend,
.com-contact .contact-name {
    display: none;
}

/* =========================================================
   CASSIOPEIA FIX: Menütexte IMMER schwarz
   ========================================================= */

/* Textfarben im Header überschreiben */
.header {
    --template-text-light: #000;
    --template-text-dark: #000;
}

/* Sicherheit: Menülinks explizit schwarz */
.header .mod-menu a {
    color: #000 !important;
}

/* =========================================================
   FEINE LINIE UNTER ÜBERSCHRIFTEN (wie altes Layout)
   ========================================================= */

/* Hauptüberschriften im Inhalt */
main h1,
main h2 {
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 0.4rem;
    margin-bottom: 1rem;
}

/* Sidebar-Überschriften (z.B. Kontaktmöglichkeiten) */
.sidebar-left h3,
.sidebar-right h3 {
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 0.35rem;
    margin-bottom: 0.9rem;
}

/* =========================================================
   MENÜ – Schriftgröße leicht erhöhen
   ========================================================= */

.header .mod-menu a {
    font-size: 1.05rem;   /* vorher ca. 0.95–1.0 */
    line-height: 1.4;
}


/* =========================================================
   ARTIKEL-ÜBERSCHRIFTEN (Blog / Kategorie)
   ========================================================= */

/* Überschrift weniger fett */
.item-content .page-header h2 {
    font-weight: 500;       /* vorher 700 */
    line-height: 1.3;
}

/* Link in Überschrift ruhig & klar */
.item-content .page-header h2 a {
  font-size: 1.6rem;  
  font-weight: 500;
    
}

/* Hover & Fokus (Maus + Tastatur) */
.item-content .page-header h2 a:hover,
.item-content .page-header h2 a:focus-visible {
    color: var(--verein-rot);
    text-decoration: underline;
}

/* Tastatur-Fokus sauber sichtbar */
.item-content .page-header h2 a:focus-visible {
    outline: 3px solid var(--verein-rot);
    outline-offset: 4px;
}

