/* Grundlegende Stile */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navigation */
header {
    background: #333;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* Hero-Bereich */
.hero {
    background: none; /* Entferne das Hintergrundbild */
    text-align: center;
    padding: 50px 20px;
}

.hero-logo {
    width: 600px; /* Passe die Größe des Logos an */
    max-width: 80%; /* Sorgt für bessere Skalierung auf kleinen Geräten */
}

.hero h1 {
    font-size: 2.5rem;
}

.hero p {
    font-size: 1.2rem;
}

/* Inhalt */
.content {
    max-width: 800px; /* Begrenzung der maximalen Breite */
    margin: 0 auto; /* Zentriert den Inhalt */
    padding: 40px 20px; /* Abstand für kleinere Bildschirme */
    text-align: center; /* Text zentrieren */
}

.content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        text-align: center;
        gap: 10px;
        background: #333;
        padding: 20px;
        position: absolute;
        width: 100%;
        top: 60px;
        left: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}
