/* Pied de page fixe avec les réseaux sociaux */
.footer {
    background-color: #222;
    color: #fff;
    padding: 1rem;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    color: #fff;
    font-size: 1.8rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #ff6b6b;
}
