/* Navbar Styles */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--headers);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo:hover {
    color: var(--mint);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--small-font);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--headers);
    background-color: var(--tan);
}

.nav-cta {
    background-color: var(--tan);
    color: var(--small-font) !important;
    padding: 8px 20px;
    border: 2px solid var(--boxes);
}

.nav-cta:hover {
    box-shadow: 2px 2px 0 var(--shadow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--headers);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 0px;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 2px solid var(--boxes);
    list-style: none;
    padding: 0;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--small-font);
    text-decoration: none;
    transition: background 0.2s;
}

.dropdown-link:hover {
    background: var(--tan);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        padding: 10px 0;
    }

    .nav-link {
        display: block;
        width: 100%;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -6px);
    }
}