/* 1. Grund-Einstellungen */
* { box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0; padding: 0;
    color: #333;
    background-color: #fcfcfc; /* Ganz leichtes Off-White */
}

/* 2. Navigation (integriert) */
.top-nav {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: transparent; /* Transparent im Hero */
}

.top-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.top-nav ul li {
    margin: 0 20px;
}

.top-nav ul li a {
    text-decoration: none;
    color: white; /* Weißer Text auf dem Bild */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.top-nav ul li a:hover {
    opacity: 0.7;
}

/* 3. Hero-Bereich */
.hero {
    position: relative; /* Wichtig für die Positionierung der Nav */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    height: 80vh; /* Nimmt 80% der Bildschirmhöhe ein */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    margin-top: 40px; /* Platzhalter für die Nav oben */
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin: 0;
    font-weight: 800;
}

.motto {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-top: 10px;
    opacity: 0.9;
}

/* 3. Elemente & Karten */
main {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

h2 {
    color: #8b0000;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-top: 4px solid #8b0000;
}

.cta-button {
    background: #8b0000;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover { background: #660000; }

article {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #eee;
}

footer {
    background: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 30px;
    margin-top: 50px;
}