/* Navigation */
.nav-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav {
    display: flex;
    gap: 2rem;
    
}

.nav-item {
    position: relative;
    font-size:12pt;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 500;
    cursor: pointer;
    font-size: 1.2rem;
}

    .nav-link:hover {
        background: rgba(255,255,255,0.1);
        color: #fbbf24;
    }

/* Dropdown Menus */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1001;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.75rem 1rem;
    color: #475569;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.2s;
    position: relative;
}

    .dropdown-item:hover {
        background: #f1f5f9;
        color: #1e40af;
        padding-left: 1.5rem;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    /* Third level dropdown */
    .dropdown-item.has-submenu:after {
        content: '';
        position: absolute;
        right: 1rem;
        font-size: 0.8rem;
    }

.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.dropdown-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
