/* ==========================================
   Wolfgang & Edeltraut – Zentrales Stylesheet
   ========================================== */


/* ========== Variablen ========== */

:root {
    --bg-page: #f2f2f2;
    --bg-section: #f5f5f5;
    --text-main: #222;
    --text-soft: #666;
    --border-soft: #ddd;
}


/* ========== Basis ========== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Helvetica, Arial, sans-serif;
    background: var(--bg-page);
    color: var(--text-main);
    text-align: center;
    line-height: 1.6;
}


/* ========== Seitencontainer ========== */

.page {
    max-width: 900px;
    margin: 2rem auto;
}


/* ========== Sektionen ========== */

.section {
    background: var(--bg-section);
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}


/* ========== Header ========== */

header img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

h1 {
    margin: 1rem 0 0.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

h2 {
    margin: 1.2rem 0 1rem;
    font-weight: 600;
    font-size: 1.4rem;
}


/* ========== Navigation ========== */

.nav-links {
    margin-top: 1rem;
}

/* Standard-Navigationslinks (neutral) */
.nav-links a {
    display: block;
    margin: 0.8rem 0;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* ==================================
   Hauptnavigation – deutlich sichtbar
   ================================== */

.nav-links .nav-primary {
    font-weight: 600;
    color: #004a99;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-decoration-thickness 0.2s ease;
}

.nav-links .nav-primary:hover,
.nav-links .nav-primary:focus-visible {
    color: #002f66;
    text-decoration-thickness: 2.5px;
}


/* ========== Bilder ========== */

main img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 1rem 0;
}


/* ========== Trennlinie ========== */


hr {
    border: none;
    border-top: 2px solid #b5b5b5;
    width: 40%;
    margin: 3rem auto;
}




/* ========== Klickbare H2 neutral halten ========== */

h2 a {
    color: var(--text-main);
    text-decoration: none;
}

h2 a:hover {
    text-decoration: underline;
}


/* ========== Footer ========== */

footer p {
    margin: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--text-soft);
}

footer a {
    color: var(--text-main);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}