/* ===== FOOTER AMÉLIORÉ ===== */
/*
================================================================================
Outils de calcul de temps - Feuille de styles
================================================================================
© Tous droits réservés
Utilisation libre à condition d'un usage non commercial
Version 2.0
Auteur: Emile SNYERS
Date: Octobre 2025
================================================================================
*/
footer {
    background: rgba(10, 14, 39, 0.9);
    border-top: 2px solid #00ff41;
    padding: 30px 20px;
    text-align: center;
    color: #0ff;
    position: relative;
    z-index: 10;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.footer-btn {
    background: transparent;
    color: #00ff41;
    border: 2px solid #00ff41;
    padding: 15px 30px;
    font-size: 0.95em;
    font-family: 'Courier New', monospace;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.footer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #00ff41;
    transition: left 0.4s;
    z-index: -1;
}

.footer-btn:hover::before {
    left: 0;
}

.footer-btn:hover {
    color: #0a0e27;
    box-shadow: 0 0 20px #00ff41;
    transform: translateY(-3px);
}

.footer-btn-icon {
    font-size: 1.3em;
    transition: transform 0.3s;
}

.footer-btn:hover .footer-btn-icon {
    transform: scale(1.2) rotate(10deg);
}

.footer-btn-text {
    font-weight: bold;
}

/* Variantes de couleurs pour chaque bouton */
.footer-btn:nth-child(1) {
    border-color: #00ff41;
    color: #00ff41;
}

.footer-btn:nth-child(1)::before {
    background: #00ff41;
}

.footer-btn:nth-child(2) {
    border-color: #0ff;
    color: #0ff;
}

.footer-btn:nth-child(2)::before {
    background: #0ff;
}

.footer-btn:nth-child(3) {
    border-color: #ff00ff;
    color: #ff00ff;
}

.footer-btn:nth-child(3)::before {
    background: #ff00ff;
}

.footer-btn:nth-child(1):hover {
    color: #0a0e27;  /* Texte sombre au survol */
    box-shadow: 0 0 20px #00ff41;
}

.footer-btn:nth-child(2):hover {
    color: #0a0e27;  /* Texte sombre au survol */
    box-shadow: 0 0 20px #0ff;
}

.footer-btn:nth-child(3):hover {
    color: #0a0e27;  /* Texte sombre au survol */
    box-shadow: 0 0 20px #ff00ff;
}

/* ===== THÈME CLAIR - FOOTER ===== */
body.light-theme footer {
    background: #ffffff;
    border-top: 3px solid #3498db;
    color: #2c3e50;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

body.light-theme footer p {
    font-family: 'Arial', sans-serif;
}

body.light-theme .footer-btn {
    font-family: 'Arial', sans-serif;
}

body.light-theme .footer-btn:nth-child(1) {
    border-color: #27ae60;
    color: #27ae60;
}

body.light-theme .footer-btn:nth-child(1)::before {
    background: #27ae60;
}

body.light-theme .footer-btn:nth-child(1):hover {
    box-shadow: 0 0 15px rgba(39, 174, 96, 0.3);
    color: white;
}

body.light-theme .footer-btn:nth-child(2) {
    border-color: #3498db;
    color: #3498db;
}

body.light-theme .footer-btn:nth-child(2)::before {
    background: #3498db;
}

body.light-theme .footer-btn:nth-child(2):hover {
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.3);
    color: white;
}

body.light-theme .footer-btn:nth-child(3) {
    border-color: #e74c3c;
    color: #e74c3c;
}

body.light-theme .footer-btn:nth-child(3)::before {
    background: #e74c3c;
}

body.light-theme .footer-btn:nth-child(3):hover {
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.3);
    color: white;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 968px) {
    footer {
        padding: 25px 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .footer-btn {
        width: 100%;
        min-width: auto;
        padding: 18px 20px;
        font-size: 0.95em;
        min-height: 55px;
    }

    .footer-btn-icon {
        font-size: 1.4em;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-links {
        gap: 15px;
    }

    .footer-btn {
        min-width: 180px;
        padding: 14px 25px;
    }
}

/* ====== Fin du footer amélioré ====== */
/*
================================================================================
Fin du fichier styles.css
================================================================================
*/