/* ==========================================================================
   FOOTER.CSS - Harmonisé Thème Crème & Bordeaux
   ========================================================================== */

.gp-footer {
    position: relative;
    padding: 80px 0 40px;
    background-color: #FAF6EE; /* Fond crème assorti au site */
    color: #2B1D16;
    border-top: 1.5px solid rgba(110, 20, 35, 0.08);
    z-index: 5;
    overflow: hidden;
}

.gp-container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

/* --- 1. Appel à l'action --- */
.footer-cta {
    text-align: center;
    margin-bottom: 60px;
}

.cta-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #6E1423; /* Bordeaux Giraaf */
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.cta-main {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #2B1D16; /* Encre sombre */
    letter-spacing: -1px;
}

/* --- 2. Grille des colonnes --- */
.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 30px;
}

.footer-col {
    width: 25%;
    min-width: 180px;
}

.footer-col h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #6E1423; /* Titres en bordeaux */
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a, 
.contact-info-list a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(43, 29, 22, 0.75); /* Texte adouci */
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover, 
.contact-info-list a:hover {
    color: #6E1423;
    padding-left: 5px;
}

/* --- 3. Section contact & Réseaux sociaux --- */
.contact-col p {
    color: rgba(43, 29, 22, 0.75);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.contact-info-list i {
    color: #6E1423;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.footer-socials {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; 
    height: 40px;
    background: rgba(110, 20, 35, 0.05); /* Fond subtil bordeaux clair */
    border: 1px solid rgba(110, 20, 35, 0.15);
    border-radius: 50%;
    color: #6E1423;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: #6E1423; /* Fond bordeaux au survol */
    border-color: #6E1423;
    color: #fff; /* Icône blanche */
    transform: translateY(-3px);
}

/* --- 4. Barre de copyright --- */
.footer-bottom {
    border-top: 1px solid rgba(110, 20, 35, 0.1);
    padding: 30px 0 10px;
    margin-top: 40px;
}

.flex-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(43, 29, 22, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.flex-bottom .signature strong {
    color: #2B1D16;
    font-weight: 700;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .footer-col {
        width: 100%;
        min-width: unset;
    }

    .flex-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
