/* assets/css/responsive.css */

/* Mobile Navigation */
@media (max-width: 767px) {
    header nav.container {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        /* Temporary border for debugging */
        /* border: 1px solid red; */
    }

    .logo img {
        max-width: 150px;
    }

    .mobile-nav-toggle {
        display: block !important;
        background: none;
        border: none;
        font-size: 24px;
        color: #FFFFFF; /* White for contrast on green header */
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1000;
        /* Temporary border for debugging */
        /* border: 1px solid blue; */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #F5F5F5;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        /* Temporary border for debugging */
        border: 1px solid green;
    }

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

    .nav-links ul {
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: #2E7D32;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        text-decoration: none;
    }

    .nav-links a.active,
    .nav-links a:hover {
        color: #FBC02D;
    }
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .mobile-nav-toggle {
        display: none !important;
    }

    .nav-links {
        display: block !important;
    }

    .nav-links ul {
        display: flex;
        align-items: center;
        list-style: none;
    }

    .nav-links li {
        margin-left: 2rem;
    }

    .nav-links a {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        color: #FFFFFF; /* Match style.css */
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .nav-links a.active,
    .nav-links a:hover {
        color: #FBC02D;
    }
}