/* CSS-Only Interactive Elements - Simple and Clean */

/* Pure CSS Dropdown Menu - No JavaScript Required */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    color: var(--secondary-color) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    cursor: pointer !important;
    border: none !important;
    min-width: 100px !important;
    text-align: center !important;
    white-space: nowrap !important;
}

.dropdown-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: var(--secondary-color) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2) !important;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid #e2e8f0;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block !important;
    padding: 0.8rem 1.3rem !important;
    color: #1e293b !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
    background-color: transparent !important;
    border-radius: 8px !important;
    margin: 0.2rem 0.5rem !important;
}

.dropdown-item:hover {
    background-color: #3b82f6 !important;
    color: white !important;
    transform: translateX(5px) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dropdown-menu {
        left: 0;
        right: 0;
        width: 100%;
        min-width: auto;
    }
    
    .dropdown-toggle {
        padding: 0.5rem 1rem !important;
        font-size: 0.9rem !important;
    }
    
    .dropdown-item {
        padding: 0.6rem 1rem !important;
        font-size: 0.9rem !important;
    }
}
