/* HERO BUTTONS FIX - NetworkX Event Style */
/* Correction des boutons dans les sections hero */

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Bouton Primary - Gradient NetworkX */
.hero-actions .btn-primary,
.btn-primary {
    background: linear-gradient(135deg, #00b9f9 0%, #b792fc 100%) !important;
    color: white !important;
    padding: 18px 40px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 6px 20px rgba(0, 185, 249, 0.4) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hero-actions .btn-primary:hover,
.btn-primary:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 30px rgba(0, 185, 249, 0.6) !important;
}

/* Bouton Outline - Style glassmorphism */
.hero-actions .btn-outline,
.btn-outline {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    color: white !important;
    padding: 18px 40px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hero-actions .btn-outline:hover,
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #00b9f9 !important;
    color: white !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(0, 185, 249, 0.3) !important;
}

/* Bouton Secondary - Cyan border */
.hero-actions .btn-secondary,
.btn-secondary {
    background: transparent !important;
    color: #00b9f9 !important;
    padding: 18px 40px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border: 2px solid #00b9f9 !important;
    border-radius: 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hero-actions .btn-secondary:hover,
.btn-secondary:hover {
    background: #00b9f9 !important;
    color: white !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(0, 185, 249, 0.4) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline,
    .hero-actions .btn-secondary,
    .btn-primary,
    .btn-outline,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 16px 32px !important;
        font-size: 16px !important;
    }
}

/* Fix pour les boutons en dehors du hero */
.btn:not(.hero-actions .btn) {
    padding: 14px 28px !important;
    font-size: 16px !important;
}

/* Animation au chargement */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-actions .btn {
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-actions .btn-primary {
    animation-delay: 0.1s;
}

.hero-actions .btn-outline {
    animation-delay: 0.2s;
}

.hero-actions .btn-secondary {
    animation-delay: 0.2s;
}
