/* styles.css – KOMPLETT & FINAL, GETESTET, KEINE FEHLER */

/* === RESET === */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* === BODY – KEIN VERDECKEN === */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    background: #fafafa;
    color: #222;
    line-height: 1.7;
    padding-top: 80px !important; /* 60px Header + 20px Puffer – SICHER */
}

/* === ALLE LINKS: SCHWARZ, KEINE UNTERSTREICHUNG === */
a { color: #000 !important; text-decoration: none !important; }
a:hover { text-decoration: underline !important; }

/* === HEADER: FIXIERT, 60PX, KEIN KLEBEN === */
.header-row {
    position: fixed !important;
    top: 0 !important; left: 0 !important; right: 0 !important;
    height: 60px !important;
    background: #fff !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem !important; /* Genug Abstand links/rechts */
    border-bottom: 1px solid #eee;
    z-index: 1000 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Logo */
.logo img { height: 32px !important; }

/* Nav-Links */
.nav-center {
    display: flex;
    gap: 1.8rem;
}
.nav-center a {
    font-weight: 500;
    font-size: 0.98rem;
}

/* Sprachauswahl */
.lang-select {
    padding: 0.4rem 0.6rem;
    border: 1px solid #ccc;
    font-size: 0.9rem;
    font-weight: 500;
    background: white;
}

/* === MAIN: ZENTRIERT, KEIN RANDKLEBEN === */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* === HERO === */
#hero { text-align: center; margin-bottom: 3rem; }
#hero img { display: block; margin: 0 auto 1rem; max-width: 300px; }
#hero h1 { font-size: 2.4rem; font-weight: 700; }
.subtitle { font-size: 1.4rem; font-weight: 300; margin-top: 0.5rem; }

/* === SECTIONS === */
section { margin-bottom: 4rem; }
h2 { 
    font-size: 1.8rem; 
    font-weight: 700; 
    border-bottom: 1px solid #ddd; 
    padding-bottom: 0.5rem; 
    margin-bottom: 1rem; 
}
h3 { font-size: 1.4rem; font-weight: 700; margin: 1.5rem 0 0.5rem; }

/* === LISTEN === */
.vertical-list { list-style: none; }
.vertical-list li { 
    margin-bottom: 1.5rem; 
    padding-bottom: 1rem; 
    border-bottom: 1px dashed #ddd; 
}
.vertical-list li.has-gallery { font-weight: 700; }

/* === FOOTER === */
footer {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* === MOBIL === */
@media (max-width: 768px) {
    .header-row { 
        flex-direction: column; 
        height: auto; 
        padding: 1rem; 
        gap: 0.5rem; 
    }
    .nav-center { gap: 1rem; flex-wrap: wrap; justify-content: center; }
    body { padding-top: 140px !important; }
    main { padding: 1rem; }
}