/* Allgemeine Stile */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0 auto;
    max-width: 1200px;
    background-color: white;
    color: black;
    text-align: left;
}

/* Header */
header {
    background-color: white;
    color: black;
    text-align: center;
    padding: 20px 50px;
    font-size: 1.2rem;
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Navigation */
.nav {
    display: flex;
    gap: 20px;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.nav ul li a {
    color: black;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
}

.nav ul li a:hover {
    background-color: #ddd;
}

/* Burger-Menü */
.menu-toggle {
    display: none;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: black;
    border-radius: 3px;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
    .nav {
        display: none; /* Navigation standardmäßig ausblenden */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: white;
        width: 100%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        padding: 10px 0;
        z-index: 10;
    }

    .menu-toggle:checked + .burger-menu + .nav {
        display: flex; /* Navigation anzeigen, wenn das Menü geöffnet ist */
    }

    .burger-menu {
        display: flex;
    }
}