/**
 * Footer — Espace Public EcoWeb CenC
 * Chargé par includes/footer.php sur toutes les pages app-public
 *
 * @version 1.0 — 2026-04-13
 */

/* ── Structure ───────────────────────────────────────────────────────────── */

.main-footer {
    background: var(--cenc-gray-dark, #37474f);
    color: #fff;
    padding: 4rem 0 2rem;
}

.main-footer p      { color: #B0BEC5; margin-bottom: .5rem; }
.main-footer strong { color: #fff; }

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

/* ── Sections ────────────────────────────────────────────────────────────── */

.footer-section h4 {
    color: var(--cenc-orange);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

/* ── Logo ────────────────────────────────────────────────────────────────── */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img { height: 35px; width: auto; }

.footer-logo h3 {
    color: var(--cenc-orange);
    font-size: 1.2rem;
    margin: 0;
}

/* ── Liens de navigation ─────────────────────────────────────────────────── */

.footer-links          { list-style: none; padding: 0; margin: 0; }
.footer-links li       { margin-bottom: .7rem; }
.footer-links a        { color: #B0BEC5; text-decoration: none; transition: .2s; }
.footer-links a:hover  { color: var(--cenc-orange); }

/* ── Bloc contact ────────────────────────────────────────────────────────── */

.footer-contact p      { margin-bottom: .45rem; color: #B0BEC5; }
.footer-contact a      { color: var(--cenc-orange); text-decoration: none; }
.footer-contact a:hover{ text-decoration: underline; }

/* ── Barre de bas de page ────────────────────────────────────────────────── */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p   { color: #90A4AE; margin-bottom: .4rem; }
.footer-subtitle   { font-size: .88rem; font-style: italic; }

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .footer-content { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 480px) {
    .footer-content { grid-template-columns: 1fr; gap: 1.5rem; }
}
