@media (max-width: 768px) {
    .navbar {
        border-radius: 0;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
        width: 100%;
    }

    .call-now {
        display: inline-block;
        background: none;
        border: 2px solid var(--accent);
        color: var(--accent);
        padding: 0.5rem 1rem;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        text-decoration: none;
    }

    .call-now-header {
        display: none;

    }

    .speisekarte-header {
        display: inline-block;
        background: none;
        border: 2px solid var(--accent);
        color: var(--accent);
        padding: 1rem 1.5rem;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        text-decoration: none;
    }

    .burger {
        display: block;
        font-size: 2rem;
        cursor: pointer;
        color: var(--fg);
        margin-left: auto;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        background: var(--section);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        text-align: center;
        padding: 1rem;
        display: none;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .navbar ul {
        display: none;
        flex-direction: column;
        gap: 1rem;
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 4rem;
    }
}