/* ========================================================== */
/* 9. RÉSEAUX SOCIAUX DANS LE FOOTER                         */
/* ========================================================== */
/* Section réseaux sociaux dans le footer */
.footer-social {
    text-align: center;
}

.footer-social h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1em;
    font-weight: bold; /* <<< MIS EN GRAS */
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #1877f2;
    border-color: #1877f2;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.social-icon i {
    color: white;
}
