/* Styles complémentaires pour le bloc supplémentaire */

/* Animation de la citation */
blockquote {
    position: relative;
    transition: all 0.5s ease;
}

blockquote:hover {
    transform: translateY(-5px);
}

/* Style des guillemets */
blockquote .quote-mark {
    font-family: 'Georgia', serif;
    font-size: 6rem;
    line-height: 1;
    opacity: 0.15;
    color: #8b5cf6; /* custom-purple */
    position: absolute;
}

blockquote .left-quote {
    top: -2rem;
    left: -1rem;
}

blockquote .right-quote {
    bottom: -3rem;
    right: -1rem;
}

/* Animation pour les statistiques */
.stats-container .stat-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-container .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.15);
}

/* Effet de brillance au survol */
.stats-container .stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.stats-container .stat-card:hover::after {
    opacity: 1;
}

/* Animation du nombre */
.stats-container .stat-number {
    display: inline-block;
    position: relative;
    transition: all 0.5s ease;
}

.stats-container .stat-card:hover .stat-number {
    color: #7c3aed; /* Légèrement plus foncé au survol */
    transform: scale(1.05);
}

/* Responsive pour le bloc supplémentaire */
@media (max-width: 768px) {
    .stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stats-container .stat-card {
        padding: 1rem;
    }
    
    .stats-container .stat-number {
        font-size: 1.75rem;
    }
    
    blockquote {
        font-size: 1.1rem;
        padding-left: 1rem;
    }
    
    blockquote .quote-mark {
        font-size: 4rem;
    }
}

/* Effets visuels pour les mots en surbrillance */
.highlight-word {
    position: relative;
    display: inline-block;
    color: #8b5cf6;
    font-weight: 600;
    transition: all 0.3s ease;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #8b5cf6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.highlight-word:hover::after {
    transform: scaleX(1);
}

.highlight-word:hover {
    color: #7c3aed;
}
