/* --- CLEAN DROPDOWN NAVIGATION STYLES --- */

/* Navigation Container */
nav { 
    background-color: rgba(0,0,0,0.9) !important; 
    border-bottom: 1px solid #222; 
    backdrop-filter: blur(12px);
}

/* Links */
.nav-link { 
    color: #ccc !important; 
    font-weight: 300 !important;
    letter-spacing: 0.04em;
    font-size: 0.9rem !important;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px; 
}
.nav-link:hover { 
    color: #fff !important; 
}

/* DROPDOWN MECHANISM */
.dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

/* Dropdown Box Design - ROUNDED & CLEAN */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: rgba(0,0,0,0.95); 
    min-width: 180px; /* Slightly narrower since icons are gone */
    box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.7);
    z-index: 100; 
    border: 1px solid #333;
    top: 100%;
    left: 0;
    border-radius: 0.5rem; /* MATCHED ROUNDING */
    padding: 0.5rem 0; 
    overflow: hidden; /* Keeps content inside rounded corners */
}

/* Dropdown Items - NO ICONS */
.dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: #ccc;
    transition: all 0.2s ease;
    border-bottom: 1px solid #1a1a1a;
}
.dropdown-item:last-child {
    border-bottom: none;
}
.dropdown-item:hover {
    background-color: #222;
    color: #fff;
    padding-left: 24px; /* Subtle slide animation */
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* LOGIN BUTTON (Consistent Rounding) */
.nav-btn { 
    background-color: #fff;
    color: #000;
    font-weight: 600;
    border-radius: 0.5rem; /* MATCHED ROUNDING */
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    height: auto;
    line-height: 1;
}
.nav-btn:hover { 
    background-color: #9dae11;
    border-color: #9dae11;
    color: #fff;
    transform: translateY(-1px);
}
