/* style.css – Pfad der Neun */

/* Grundlayout */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
    line-height: 1.6;
}

body {
    background-color: #f4f4f9;
    color: #222;
}

/* Navigationsleiste */
nav {
    background-color: #2c3e50;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0;
}

nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav ul li a:visited {
    color: #ecf0f1; /* Verhindert lila Links */
}

nav ul li a:hover {
    color: #f39c12;
}

/* Hauptinhalt */
main {
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.intro {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.intro h2 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 2rem;
}

/* Fußzeile */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #2c3e50;
    color: #ecf0f1;
    font-size: 0.9rem;
    margin-top: 4rem;
}

footer a {
    color: #f39c12;
    text-decoration: none;
}

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

/* Responsiv */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .intro h2 {
        font-size: 1.5rem;
    }

    main {
        padding: 2rem 1rem;
    }
}
