/* Simple Sandwich Menu Styles */
.nav-container {
    width: 100%;
    max-width: var(--max-width);
    margin-bottom: 2rem;
    position: relative;
}
.nav-toggle {
    display: none;
}
.nav-button {
    display: none;
    cursor: pointer;
    padding: 10px;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
}
.nav-button span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
    transition: 0.3s;
}
.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}
.main-nav li {
    margin-bottom: 3px;
}
.main-nav a {
    text-decoration: none;
    padding: 3px 8px;
    background: #eee;
    border-radius: 3px;
    font-size: 0.8rem;
    color: #333;
}
.main-nav a:hover, .main-nav a.active {
    background: var(--accent);
    color: white;
}

@media (max-width: 700px) {
    .nav-container {
        margin: 0;
    }
    .nav-button {
        display: flex;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001;
    }
    .main-nav {
        display: none;
        flex-direction: column;
        background: white;
        border: 1px solid #ccc;
        border-radius: 5px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1000;
        padding: 60px 20px 20px;
        overflow-y: auto;
    }
    .nav-toggle:checked ~ .main-nav {
        display: flex;
    }
    .nav-toggle:checked ~ .nav-button span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .nav-toggle:checked ~ .nav-button span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle:checked ~ .nav-button span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    .main-nav a {
        display: block;
        font-size: 1.2rem;
        padding: 10px;
        text-align: center;
    }
}
.weiter-link {
    display: block;
    margin-top: 3rem;
    padding: 1rem;
    background: var(--accent);
    color: white !important;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
