/* ============================================================
   DÉCOGRAPH — Footer
   S'applique par-dessus le Footer Builder d'Astra (Personnaliser >
   Constructeur de site > Pied de page). Chaque widget du footer
   doit recevoir la classe CSS correspondante (champ "Classe CSS"
   dans les réglages du widget) :
     - .decograph-footer-title    -> titres de colonnes
     - .decograph-footer-links    -> widget "Menu de navigation"
     - .decograph-footer-contact  -> widget texte (email/tél/Insta)
     - .decograph-footer-address  -> widget texte (adresse)
     - .decograph-footer-bottom   -> ligne du bas (copyright + liens)
============================================================ */

/* ===== FOND GÉNÉRAL ===== */
.site-footer {
    background: #1a1a1a !important;
    font-family: inherit;
}

/* ===== GRILLE — colonnes alignées en haut ===== */
.site-above-footer-wrap .ast-builder-grid-row {
    align-items: start !important;
}
.site-above-footer-wrap .ast-builder-grid-row-container-inner {
    padding: 56px 32px 36px;
    max-width: 1280px;
    margin: 0 auto;
}
.site-above-footer-wrap .site-footer-section,
.site-above-footer-wrap .footer-widget-area-inner {
    padding: 0 !important;
}

/* ===== TEXTES GÉNÉRAUX DU FOOTER ===== */
.site-footer p,
.site-footer li,
.site-footer a {
    font-family: inherit !important;
}

/* ===== LOGO (encadré blanc pour ressortir sur fond sombre) ===== */
.site-footer-above-section-1 .wp-block-image,
.site-footer .decograph-footer-logo {
    display: inline-block !important;
    background: #ffffff !important;
    border-radius: 10px !important;
    padding: 10px 16px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25) !important;
}
.site-footer-above-section-1 .wp-block-image img {
    height: 70px !important;
    width: auto !important;
    display: block;
}

/* ===== TITRES DE COLONNES ===== */
.decograph-footer-title {
    color: #DDB406 !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    margin: 0 0 16px 0 !important;
}

/* ===== ADRESSE ===== */
.decograph-footer-address p {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.88rem !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}
.decograph-footer-address strong {
    color: #ffffff !important;
}

/* ===== NAVIGATION FOOTER ===== */
.decograph-footer-links ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.decograph-footer-links li {
    margin-bottom: 6px !important;
}
.decograph-footer-links a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    font-size: 0.88rem !important;
    display: inline-block !important;
    padding: 2px 0 !important;
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.decograph-footer-links a:hover {
    color: #DDB406 !important;
    padding-left: 4px !important;
}

/* ===== CONTACT ===== */
.decograph-footer-contact p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.88rem !important;
    line-height: 1.8 !important;
    margin: 0 0 6px 0 !important;
}
.decograph-footer-contact a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.decograph-footer-contact a:hover { color: #DDB406 !important; }

/* ===== BARRE DU BAS ===== */
.site-primary-footer-wrap {
    background: #111111 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.decograph-footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px 24px;
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 0.78rem !important;
}
.decograph-footer-bottom p { margin: 0 !important; color: rgba(255, 255, 255, 0.55) !important; }
.decograph-footer-bottom a {
    color: rgba(255, 255, 255, 0.55) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.decograph-footer-bottom a:hover { color: #DDB406 !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .site-above-footer-wrap .ast-builder-grid-row-container-inner {
        padding: 36px 20px 24px;
    }
    .decograph-footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        padding: 18px 20px !important;
    }
}