/*
Auteur : Emile SNYERS 
Date : 2025-06-21
/* LICENCE ET CONDITIONS D'UTILISATION
----------------------------------------

Emile SNYERS - Tous droits réservés - 2025

📢Toute utilisation nécessite une autorisation préalable du propriétaire (Emile SNYERS).
🚨Usage non commercial uniquement.

Type d'utilisation autorisée: 
- Utilisation pour des projets éducatifs ou associatifs.
- Ne pas redistribuer sans autorisation.

Critères d'attribution d'une autorisation: 
- Contribution à des projets éducatifs ou associatifs.
- L'entraide et le partage du savoir.
- Contribue à la promotion de l'éducation et de la culture.
----------------------------------------
*/


/* ====================================================================
   BOUTON RETOUR AU DÉBUT   
==================================================================== */

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--theme-primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: none;
    transition: all 0.3s ease;
    box-shadow: var(--theme-section-shadow);
}

.back-to-top:hover {
    background-color: var(--theme-accent);
    transform: scale(1.1);
}
.back-to-top:active {
    transform: scale(0.9);
}
.back-to-top i {
    font-size: 24px;
}