/* ============================================================
   FOOTER — Restauration21
   ============================================================ */

/* Bannière 728×90 au-dessus du footer, fond page, toutes pages */
.banner-footer {
    text-align: center;
    margin: var(--space) var(--space);
    max-width: 728px;
    margin-inline: auto;
}

.banner-footer img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.site-footer {
    background: var(--color-dark);
    padding: 40px var(--space) 28px;
}

.footer__inner {
    max-width: var(--container);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Icônes sociales */
.footer__socials {
    display: flex;
    gap: 10px;
}

.footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    color: var(--color-white);
    font-size: 1rem;
    text-decoration: none;
    transition: filter 0.15s;
}

.footer__social:hover {
    filter: brightness(1.25);
}

.footer__social--linkedin { background: #0a66c2; }
.footer__social--facebook { background: #1877f2; }
.footer__social--twitter  { background: #000; }

/* Logo */
.footer__logo {
    display: block;
}

.footer__logo img {    
    width: auto;
}

/* Tagline */
.footer__tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Barre copyright + liens */
.footer__bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 16px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer__copyright {
    white-space: nowrap;
}

.footer__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 4px 16px;
    justify-content: center;
}

.footer__menu a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.15s;
}

.footer__menu a:hover {
    color: var(--color-white);
}

