/* Navbar Futuriste - Styles et Animations */

/* Animation de flottement pour les particules */
@keyframes float {
    0%, 100% {
        transform: translateY(-5px);
        opacity: 0.3;
    }
    50% {
        transform: translateY(5px);
        opacity: 0.6;
    }
}

/* Animation de pulsation pour les icônes */
@keyframes pulse {
    0% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.8;
    }
}

/* Styles pour les liens de navigation futuristes */
.nav-link-futuristic {
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
}

.nav-link-futuristic:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.2);
    background: rgba(0, 255, 136, 0.2) !important;
    color: white !important;
}

/* Styles pour les boutons de langue futuristes */
.language-btn-futuristic:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    background: rgba(0, 123, 255, 0.3) !important;
}

/* Effet de glow pour le navbar */
.navbar-futuristic {
    animation: navbar-glow 3s ease-in-out infinite alternate;
}

@keyframes navbar-glow {
    0% {
        box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1), 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 8px 40px rgba(0, 255, 136, 0.2), 0 2px 12px rgba(0, 0, 0, 0.4);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-futuristic .nav-link-futuristic {
        font-size: 0.9rem !important;
        padding: 8px 12px !important;
    }
    
    .navbar-futuristic .nav-link-futuristic i {
        display: none;
    }
}

/* Transitions douces pour tous les éléments interactifs */
.navbar-futuristic * {
    transition: all 0.3s ease;
}

/* Style pour le dropdown menu */
.navbar-futuristic .dropdown-menu {
    background: rgba(0, 20, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 3000 !important;
}

.navbar-futuristic .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.navbar-futuristic .dropdown-item:hover {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding-left: 25px;
}
