/* ============================================================
   FOOTER – FORMATION SPORT 94 (VERSION UNIQUE)
   ============================================================ */

.main-footer {
    background-color: #020c1b;
    padding: 80px 0 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* STRUCTURE */
.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 80px;
    padding-bottom: 60px;
}

/* LOGO */
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.footer-logo span {
    background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXTE */
.footer-text,
.main-footer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #a8b2d1;
}

/* TITRES */
.main-footer h4 {
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #ffffff;
}

/* Container du footer – empêche le texte de coller aux bords */
.main-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* LISTES */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

/* LIENS */
.footer-link {
    display: block;
    color: #a8b2d1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-link:hover {
    color: #bf953f;
    padding-left: 5px;
}

/* TÉLÉPHONE */
.footer-phone {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

/* BAS DE FOOTER */
.footer-bottom {
    text-align: center;
    padding: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.7rem;
    opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-link:hover {
        padding-left: 0;
    }
}
