/* ============================================================
   AUDREC — Footer
============================================================= */

/* ===== Design "AUDREC" (classes .audrec-footer-*) =====
   Ces classes ne semblent générées par aucun code PHP actuel.
   Si ton footer est construit via Personnaliser > Constructeur de
   site > Pied de page (comme sur Décograph), assigne ces classes
   aux widgets correspondants dans le champ "Classe CSS" pour que
   ce style s'applique. */
.audrec-footer {
    background: var(--dark, #1a1a2e);
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body, 'Raleway', sans-serif);
    padding: 60px 0 0;
    margin-top: 0;
}
.audrec-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.audrec-footer-tagline {
    text-align: center;
    font-family: var(--font-title, 'Playfair Display', serif);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
}
.audrec-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
}
.audrec-footer h4 {
    font-family: var(--font-title, 'Playfair Display', serif);
    color: var(--white, #fff);
    font-size: 1.1rem;
    margin-bottom: 16px;
}
.audrec-footer-info {
    font-size: 0.88rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.65);
}
.audrec-footer-info a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.audrec-footer-info a:hover { color: var(--red, #ed494a); }
.audrec-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}
.audrec-footer-links {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}
.audrec-footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}
.audrec-footer-links a:hover { color: var(--red, #ed494a); }

/* ===== Liens "footer-links" (générés par le shortcode [footer_links_inline]) =====
   Le shortcode audrec_footer_links_shortcode() (functions.php) écrit déjà
   les couleurs en style inline sur chaque lien — ces règles servent surtout
   de filet de sécurité / valeur par défaut au survol. */
.footer-links li a {
    color: #999999 !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.footer-links li a:hover {
    color: #E54C4F !important;
}

/* ===== Menu "footer-menu" (probablement un widget menu de navigation
   du Footer Builder Astra, placé dans une colonne ".footer-right") ===== */
.footer-right .footer-menu {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-right .footer-menu li {
    display: inline-block !important;
}
.footer-right .footer-menu li a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
}
.footer-right .footer-menu li a:hover {
    color: #e63946;
}
/* Filet de sécurité si le menu apparaît hors de .footer-right */
.footer-menu li a {
    color: #999999 !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .audrec-footer-grid { grid-template-columns: 1fr; }
    .audrec-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 768px) {
    .footer-left, .footer-right {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }
    .footer-right .footer-menu {
        justify-content: center;
    }
}