/* ===================================
    STYLES GLOBAUX - UNIET
    Header et Footer identiques sur toutes les pages
    =================================== */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap');

/* RESET GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Roboto', sans-serif !important;
    line-height: 1.6;
    color: #333;
}

/* FOOTER STYLES */
.modern-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-main {
    width: 100%;
}

.footer-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo-section img {
    width: 100px;
    margin-bottom: 20px;
}

.footer-logo-section h4 {
    color: #E21B20;
    font-family: Arial Narrow, Arial, sans-serif;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.footer-logo-section p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-title {
    color: #E21B20;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #E21B20;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    color: #ccc;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: #E21B20;
    margin-right: 10px;
    margin-top: 3px;
    min-width: 20px;
}

.footer-social {
    margin-top: 20px;
}

.footer-social h6 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #E21B20;
    transform: translateY(-3px);
}

.social-links i {
    font-size: 16px;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #333;
}

.footer-copyright {
    color: #999;
    font-size: 14px;
    margin: 0;
}

/* RESPONSIVE FOOTER */
@media (max-width: 991px) {
    .modern-footer {
        padding: 40px 0 0;
        margin-top: 60px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 30px 0 0;
        margin-top: 40px;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-logo-section h4 {
        font-size: 1.2rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
}
