/**
 * ═══════════════════════════════════════════════════════════════
 * MAISONS CTL - Styles Footer Landing (Minimaliste)
 * ═══════════════════════════════════════════════════════════════
 * 
 * Fichier : css/footer-landing.css
 * Description : Styles pour le footer minimaliste des landing pages
 * 
 * Version : 1.2.0 - Fix centrage du texte
 * Date : 29/10/2025
 * 
 * CHANGEMENTS v1.2.0 :
 * 🔥 FIX : Ajout du text-align: center pour centrer tout le footer
 * ✅ Footer maintenant parfaitement centré
 * ✅ Meilleur espacement
 * ✅ Responsive optimisé
 * 
 * ═══════════════════════════════════════════════════════════════
 */

/* ═══════════════════════════════════════════════════════════
   FOOTER LANDING - MINIMALISTE (Format centré)
═══════════════════════════════════════════════════════════ */

.footer-landing {
    background: #2c3e50;
    color: #ffffff;
    padding: 30px 20px;
    margin-top: 60px;
    text-align: center; /* 🔥 FIX : Centrage du texte */
}

.footer-landing-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   COORDONNÉES ESSENTIELLES
═══════════════════════════════════════════════════════════ */

.footer-landing-contact {
    margin-bottom: 20px;
}

.footer-landing-contact p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    color: #ecf0f1;
}

.footer-landing-contact strong {
    font-weight: 600;
    font-size: 1.05rem;
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.footer-landing-contact a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-landing-contact a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════
   LIENS LÉGAUX - Format horizontal centré
═══════════════════════════════════════════════════════════ */

.footer-landing-legal {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-landing-legal p {
    font-size: 0.85rem;
    line-height: 1.8;
    margin: 0;
    color: #bdc3c7;
}

.footer-landing-legal a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-landing-legal a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE MOBILE
═══════════════════════════════════════════════════════════ */

@media screen and (max-width: 768px) {
    
    .footer-landing {
        padding: 25px 15px;
        margin-top: 40px;
    }
    
    .footer-landing-contact p {
        font-size: 0.9rem;
        line-height: 1.9;
    }
    
    .footer-landing-legal p {
        font-size: 0.82rem;
        line-height: 2;
    }
    
    /* Les liens légaux passent sur plusieurs lignes sur mobile */
    .footer-landing-legal a {
        white-space: normal;
        display: inline-block;
        margin: 3px 0;
    }
    
}

@media screen and (max-width: 480px) {
    
    .footer-landing {
        padding: 20px 10px;
    }
    
    .footer-landing-contact p {
        font-size: 0.85rem;
    }
    
    .footer-landing-contact strong {
        font-size: 1rem;
    }
    
    .footer-landing-legal p {
        font-size: 0.78rem;
        line-height: 2.2;
    }
    
}

/* ═══════════════════════════════════════════════════════════
   FIN DU FICHIER
═══════════════════════════════════════════════════════════ */