/* ================================
   RENOV PRESTIGE - Éléments GOLD
   Styles spécifiques pour les éléments en couleur GOLD
   ================================ */

/* Style GOLD pour "Notre Expertise" */
.hero-title .gradient-text {
    color: #FFD700 !important;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    background-size: 200% auto !important;
    animation: goldShine 3s ease-in-out infinite !important;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3) !important;
    font-weight: 800 !important;
    position: relative !important;
    display: inline-block !important;
}

/* Animation de brillance pour le texte gold */
@keyframes goldShine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Style GOLD pour "100%" */
.hero-stats .stat-item .stat-number {
    color: #FFD700 !important;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    background-size: 200% auto !important;
    animation: goldShine 3s ease-in-out infinite !important;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3) !important;
    font-weight: 900 !important;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4)) !important;
    position: relative !important;
}

/* Effet de lueur douce autour du texte gold */
.hero-title .gradient-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    color: #FFD700;
    filter: blur(15px);
    opacity: 0.4;
}

/* Amélioration de la lisibilité sur fond clair */
.hero-text .gradient-text,
.hero-stats .stat-number {
    position: relative;
    z-index: 1;
}

/* Responsive - optimisation mobile */
@media (max-width: 768px) {
    .hero-title .gradient-text {
        font-size: 2.5rem !important;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.4) !important;
    }
    
    .hero-stats .stat-item .stat-number {
        font-size: 2rem !important;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.4) !important;
    }
}

/* Tablette */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title .gradient-text {
        font-size: 3rem !important;
        text-shadow: 0 0 25px rgba(255, 215, 0, 0.35) !important;
    }
    
    .hero-stats .stat-item .stat-number {
        font-size: 2.3rem !important;
        text-shadow: 0 0 25px rgba(255, 215, 0, 0.35) !important;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .hero-title .gradient-text {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.3) !important;
    }
    
    .hero-stats .stat-item .stat-number {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.3) !important;
    }
}

/* Effet de survol pour "Notre Expertise" */
.hero-title .gradient-text:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Effet de survol pour "100%" */
.hero-stats .stat-item:hover .stat-number {
    transform: scale(1.1) translateY(-3px);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.6)) !important;
}

/* Amélioration de l'accessibilité */
.hero-title .gradient-text,
.hero-stats .stat-number {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Support pour les écrans haute résolution */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-title .gradient-text,
    .hero-stats .stat-number {
        font-weight: 800 !important;
    }
}

/* Mode sombre (si activé) */
@media (prefers-color-scheme: dark) {
    .hero-title .gradient-text,
    .hero-stats .stat-number {
        text-shadow: 0 0 40px rgba(255, 215, 0, 0.5) !important;
    }
}
