/* ============================================================
   EGB Photographie — Footer
   Fichier dédié au composant
   `website/templates/components/footer.html`.
   ============================================================ */

.egb-footer-legal {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 18px;
}
.egb-footer-legal a {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    letter-spacing: .5px;
    text-decoration: none;
    transition: color .2s;
}
.egb-footer-legal a:hover { color: #fff; }
.egb-footer-legal .sep {
    color: rgba(255, 255, 255, .3);
    font-size: 12px;
    line-height: 1;
}

.egb-footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.egb-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: rgba(255, 255, 255, .85);
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .04);
    transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease;
}
.egb-footer-social a:hover,
.egb-footer-social a:focus {
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .08);
    transform: translateY(-2px);
}
.egb-footer-social svg {
    width: 18px;
    height: 18px;
    display: block;
}
