/* === RESPONSIVE STYLES === */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        background: var(--coffee);
        flex-direction: column;
        width: 60%;
        height: 100vh;
        padding-top: 3rem;
        transition: right 0.4s ease;
    }

    .nav-links a {
        color: #fff;
        font-size: 1.2rem;
        padding: 1rem;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 4rem 1rem;
    }
}