/**
 * EPROGCONSULTING - Styles Bouton Scroll to Top
 * Design moderne avec animations fluides et indicateur de progression
 * Compatible mode sombre/clair et responsive
 * 
 * @version 1.0
 * @date Janvier 2025
 * @author EPROGCONSULTING
 */

/* ================================
   BOUTON SCROLL TO TOP PRINCIPAL
   ================================ */

.scroll-to-top-btn {
    /* Position et z-index */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001; /* Légèrement au-dessus du chat (1000) */
    
    /* Dimensions */
    width: 60px;
    height: 60px;
    
    /* Style de base */
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    
    /* Ombre et effets */
    box-shadow: 
        0 4px 20px rgba(59, 130, 246, 0.3),
        0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    
    /* Transitions */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(10px) scale(0.8);
    opacity: 0;
    
    /* Flexbox pour centrer le contenu */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Couleur du texte */
    color: white;
    
    /* Désactiver la sélection */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* ================================
   GESTION DE LA SUPERPOSITION AVEC LE CHAT
   ================================ */

/* Quand le chat est présent, repositionner le bouton scroll */
.scroll-to-top-btn.with-chat {
    right: 100px; /* Décaler vers la gauche pour éviter le chat */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Quand le chat est ouvert, repositionner verticalement */
.scroll-to-top-btn.with-chat.chat-open {
    bottom: 100px; /* Monter le bouton si chat ouvert */
    right: 30px;   /* Revenir à la position normale horizontalement */
}

/* Support pour les sélecteurs :has() si disponible */
body:has(.chat-widget) .scroll-to-top-btn:not(.with-chat) {
    right: 100px;
}

body:has(.chat-widget.chat-open) .scroll-to-top-btn:not(.with-chat) {
    bottom: 100px;
    right: 30px;
}

/* ================================
   ÉTATS DE VISIBILITÉ
   ================================ */

.scroll-to-top-btn.scroll-btn-visible {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

.scroll-to-top-btn.scroll-btn-hidden {
    transform: translateY(10px) scale(0.8);
    opacity: 0;
    pointer-events: none;
}

/* ================================
   ÉTATS INTERACTIFS
   ================================ */

.scroll-to-top-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 30px rgba(59, 130, 246, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.scroll-to-top-btn:active,
.scroll-to-top-btn.scroll-btn-active {
    transform: translateY(-1px) scale(0.95);
    box-shadow: 
        0 2px 15px rgba(59, 130, 246, 0.3),
        0 1px 5px rgba(0, 0, 0, 0.1);
}

.scroll-to-top-btn.scroll-btn-hover {
    animation: pulse-glow 2s infinite;
}

/* ================================
   INDICATEUR DE PROGRESSION
   ================================ */

.scroll-progress-ring {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 50px;
    height: 50px;
    transform: rotate(-90deg);
    pointer-events: none;
}

.scroll-progress-ring-bg {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2;
}

.scroll-progress-ring-progress {
    stroke: rgba(255, 255, 255, 0.9);
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s ease-out;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
}

/* ================================
   ICÔNE CENTRALE
   ================================ */

.scroll-icon {
    position: relative;
    z-index: 2;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-icon i {
    font-weight: 900;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ================================
   EFFET RIPPLE AU HOVER
   ================================ */

.scroll-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease-out;
    pointer-events: none;
}

.scroll-to-top-btn:hover .scroll-ripple {
    width: 120%;
    height: 120%;
    opacity: 0;
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(59, 130, 246, 0.3),
            0 2px 10px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 
            0 4px 25px rgba(59, 130, 246, 0.5),
            0 2px 15px rgba(0, 0, 0, 0.15),
            0 0 20px rgba(59, 130, 246, 0.2);
    }
}

@keyframes bounce-in {
    0% {
        transform: translateY(10px) scale(0.8);
        opacity: 0;
    }
    60% {
        transform: translateY(-2px) scale(1.05);
        opacity: 1;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes bounce-out {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(10px) scale(0.8);
        opacity: 0;
    }
}

/* ================================
   ADAPTATION MODE SOMBRE
   ================================ */

[data-theme="dark"] .scroll-to-top-btn {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    box-shadow: 
        0 4px 20px rgba(30, 64, 175, 0.4),
        0 2px 10px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .scroll-to-top-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
    box-shadow: 
        0 8px 30px rgba(30, 64, 175, 0.5),
        0 4px 15px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .scroll-progress-ring-bg {
    stroke: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .scroll-progress-ring-progress {
    stroke: rgba(147, 197, 253, 0.9);
    filter: drop-shadow(0 0 5px rgba(147, 197, 253, 0.4));
}

/* ================================
   VARIANTES DE COULEURS
   ================================ */

/* Variante cyan pour différenciation */
.scroll-to-top-btn.variant-cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.scroll-to-top-btn.variant-cyan:hover {
    background: linear-gradient(135deg, #0891b2, #0e7490);
}

/* Variante purple */
.scroll-to-top-btn.variant-purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.scroll-to-top-btn.variant-purple:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Tablettes */
@media (max-width: 768px) {
    .scroll-to-top-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    /* Éviter la superposition avec le chat sur tablette */
    .scroll-to-top-btn.with-chat {
        right: 80px; /* Décaler moins sur tablette */
    }
    
    .scroll-to-top-btn.with-chat.chat-open {
        bottom: 90px; /* Adaptation pour tablette */
        right: 20px;
    }
    
    .scroll-progress-ring {
        width: 40px;
        height: 40px;
        top: 5px;
        left: 5px;
    }
    
    .scroll-icon {
        font-size: 16px;
    }
}

/* Smartphones */
@media (max-width: 480px) {
    .scroll-to-top-btn {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
    
    /* Positionnement vertical sur mobile pour éviter le chat */
    .scroll-to-top-btn.with-chat {
        bottom: 85px; /* Monter au-dessus du chat sur mobile */
        right: 15px;  /* Garder l'alignement à droite */
    }
    
    .scroll-to-top-btn.with-chat.chat-open {
        bottom: 110px; /* Encore plus haut si chat ouvert */
        right: 15px;
    }
    
    .scroll-progress-ring {
        width: 35px;
        height: 35px;
        top: 5px;
        left: 5px;
    }
    
    .scroll-progress-ring-progress {
        stroke-dasharray: 109.96; /* Nouvelle circonférence pour cercle plus petit */
    }
    
    .scroll-icon {
        font-size: 14px;
    }
}

/* ================================
   ACCESSIBILITÉ
   ================================ */

/* Respect des préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
    .scroll-to-top-btn,
    .scroll-icon,
    .scroll-progress-ring-progress,
    .scroll-ripple {
        transition: none;
        animation: none;
    }
    
    .scroll-to-top-btn.scroll-btn-hover {
        animation: none;
    }
}

/* Focus pour navigation clavier */
.scroll-to-top-btn:focus {
    outline: 3px solid rgba(59, 130, 246, 0.5);
    outline-offset: 2px;
}

[data-theme="dark"] .scroll-to-top-btn:focus {
    outline-color: rgba(147, 197, 253, 0.5);
}

/* ================================
   ÉTATS DE CHARGEMENT
   ================================ */

.scroll-to-top-btn.loading .scroll-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ================================
   OPTIMISATIONS PERFORMANCE
   ================================ */

.scroll-to-top-btn {
    /* Forcer l'accélération GPU */
    will-change: transform, opacity;
    transform: translateZ(0);
}

/* Éviter les repaints pendant les animations */
.scroll-to-top-btn * {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
