/**
 * ========================================
 * MAISONS CTL - THÈME CUSTOM
 * ========================================
 * 
 * Fichier : Footer CSS
 * Description : Styles du pied de page avec design moderne
 *               Fond gris foncé (#2C3E50), accent rouge (#E74C3C)
 *               Grid 3 colonnes responsive
 * 
 * Chemin : wp-content/themes/maisons-ctl-custom/assets/css/footer.css
 * 
 * Version : 1.1.0
 * Date création : 01/10/2025 - 08:35
 * Dernière modification : 01/10/2025 - 10:15
 * 
 * Auteur : Claude Sonnet 4.5
 * 
 * Changelog :
 * - v1.1.0 (01/10/2025 - 10:15) : Optimisation footer
 *   • Styles pour titre "MAISONS CTL" (au lieu du logo)
 *   • Tagline "Depuis 1976" stylisé
 *   • Footer plus épuré sans logo
 *   • Meilleure hiérarchie visuelle
 * - v1.0.0 (01/10/2025) : Création initiale
 * 
 * ========================================
 */

/* ============================================
   FOOTER PRINCIPAL
   ============================================ */

.footer-custom {
    background-color: #2C3E50;
    color: #ffffff;
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

/* ============================================
   COLONNES DU FOOTER
   ============================================ */

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #E74C3C;
}

/* ============================================
   COLONNE À PROPOS (sans logo)
   ============================================ */

.footer-about {
    padding-right: 20px;
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 5px 0;
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 14px;
    color: #E74C3C;
    font-weight: 600;
    margin: 0 0 20px 0;
    font-style: italic;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #BDC3C7;
    margin: 0;
}

/* ============================================
   COLONNE CONTACT
   ============================================ */

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-icon {
    flex-shrink: 0;
    color: #E74C3C;
    margin-top: 2px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #E74C3C;
}

.footer-map-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #E74C3C;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.footer-map-link:hover {
    background-color: #C0392B;
}

/* ============================================
   COLONNE HORAIRES
   ============================================ */

.footer-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-hours-list li {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #BDC3C7;
}

.footer-hours-list li:last-child {
    border-bottom: none;
}

.footer-hours-list li strong {
    color: #ffffff;
    display: inline-block;
    min-width: 90px;
}

/* ============================================
   BARRE DE COPYRIGHT
   ============================================ */

.footer-bottom {
    background-color: #1a252f;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    margin: 0;
    font-size: 14px;
    color: #BDC3C7;
}

.footer-bottom-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-link {
    color: #BDC3C7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #ffffff;
}

.footer-separator {
    color: #BDC3C7;
}

/* ============================================
   RESPONSIVE - TABLETTE (768px - 1024px)
   ============================================ */

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-hours {
        grid-column: span 2;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (< 768px)
   ============================================ */

@media (max-width: 768px) {
    .footer-custom {
        padding: 40px 0 0;
        margin-top: 60px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }

    .footer-hours {
        grid-column: span 1;
    }

    .footer-brand {
        font-size: 22px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-map-link {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   RESPONSIVE - PETIT MOBILE (< 480px)
   ============================================ */

@media (max-width: 480px) {
    .footer-brand {
        font-size: 20px;
    }

    .footer-title {
        font-size: 18px;
    }

    .footer-contact-item,
    .footer-hours-list li {
        font-size: 13px;
    }

    .footer-hours-list li strong {
        display: block;
        margin-bottom: 3px;
        min-width: auto;
    }
}