/* === FOOTER MODERNE — VARIANTE ÉLÉGANTE === */
footer {
    background-color: #333;               /* gris foncé sobre */
    color: #ddd;                          /* texte doux */
    padding: 25px 0;
    font-size: 14px;
    border-top: 2px solid #777;           /* ligne fine et discrète */
}

footer .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

footer .footer-left,
footer .footer-right {
    padding: 5px 10px;
}

footer .footer-left {
    text-align: left;
}

footer .footer-right {
    text-align: right;
    font-style: normal;
    opacity: 0.75;
}

footer a {
    color: #ddd;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-bottom-color 0.2s;
}

footer a:hover {
    color: #fff;
    border-bottom-color: #ddd;
}

/* RTL support */
body.rtl footer .footer-left {
    text-align: right;
}

body.rtl footer .footer-right {
    text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
    footer .container {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-left,
    footer .footer-right {
        text-align: center;
        padding: 8px 0;
    }

    body.rtl footer .footer-left,
    body.rtl footer .footer-right {
        text-align: center;
    }
}
