.footer {
    padding: 1.2rem 1.2rem;
    text-align: left;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
}

.footer-container {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
    border-top: 2px solid #898989; 
    gap: 1.5rem;
}


.footer-column {
    flex: 1;
    min-width: 200px;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
}
.footer-column p {
   line-height: 1.5;
}

.footer-column h3 {
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    padding-top: 0.5rem;   
}

.footer-column ul li a {
    text-decoration: none;
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #E85426;
}

.footer-column address {
    font-style: normal;
    color: var(--white);
    line-height: 1.5; 
}

.footer-bottom {
    margin-top: 1rem;
    font-size: 0.8rem;
    text-align: center;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
}

.footer-bottom a {

    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
}


.footer-bottom a:hover {
    color: #E85426;
}

.social-links {
    display: flex; 
    gap: 1.2rem;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    padding-top: 0.5rem;
}

.social-links img {
    width: 28px;
    height: 28px;
}

/* ----------- Responsive Footer ----------- */

/* Tablettes et petits écrans */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        padding: 0;
    }
    .footer-column {
        min-width: 0;
    }
    .footer-column h3 {
        font-size: 1.1rem;
    }
    .footer-column p,
    .footer-column ul li,
    .footer-column address {
        font-size: 0.95rem;
    }
    .social-links img {
        width: 32px;
        height: 32px;
    }
    .footer-bottom {
        margin-top: 1.2rem;
        font-size: 0.85rem;
    }
}

/* Mobiles */
@media (max-width: 600px) {
    .footer {
        padding: 1rem 0.5rem;
    }
    .footer-container {
        padding: 0 0.5rem;
    }
    .footer-column {
        padding: 0;
    }
    .footer-column h3 {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }
    .footer-column p,
    .footer-column ul li,
    .footer-column address {
        font-size: 0.9rem;
    }
    .footer-column img {
        width: 70px !important;
    }
    .social-links img {
        width: 28px;
        height: 28px;
    }
    .footer-bottom {
        margin-top: 0.7rem;
        font-size: 0.8rem;
        padding: 0 0.2rem;
    }
}