/* =============================================
   Theme: Glassmorphism & Professional Details
   ============================================= */

/* --- Header Glassmorphism Effect --- */
.header.sticky {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- Hero Section Aesthetic Details --- */
.hero-split {
    background-color: #f8f9fa; /* Fond légèrement grisé pour le contraste */
}

.hero-split .hero-split-video-wrapper {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.hero-split .hero-split-video-wrapper:hover {
    transform: scale(1.03); /* Zoom subtil au survol */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35); /* Ombre plus prononcée */
}

/* --- Professional Button Redesign (v2) --- */
.hero-split .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem; /* Espace ajouté pour la respiration */
    align-items: center;
}

.hero-split .hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1;
    border-radius: 10px; /* Coins arrondis professionnels */
    text-decoration: none;
    transition: all 0.25s ease-out;
}

.hero-split .hero-buttons .btn .btn-icon {
    margin-left: 0.5rem;
    transition: transform 0.25s ease-out;
}

/* Bouton Principal */
.hero-split .btn-accent {
    background: var(--gradient-primary);
    color: #fff !important; /* Forcer la couleur du texte en blanc */
    box-shadow: var(--shadow-primary);
    -webkit-text-fill-color: initial; /* Annuler l'effet de transparence du texte */
    text-fill-color: initial; /* Annuler l'effet de transparence du texte */
}

.hero-split .btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary-hover);
}

.hero-split .btn-accent:hover .btn-icon {
    transform: translateX(4px);
}

/* Bouton Secondaire */
.hero-split .btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
}

.hero-split .btn-outline:hover {
    background-color: var(--color-secondary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px -4px rgba(0, 114, 255, 0.3);
}
