/* DEBUT Footer -----------------------------------------------------*/
#footer {
    background-color: #1B1C1B;
    color: white;
    width: 100%;
    position: relative;
    z-index: 10;
    margin-top: auto;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 50px 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-section h3 {
    color: #BB4144;
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 400;
}
.footer-logo img {
    width: 140px;
    height: auto;
    margin-bottom: 20px;
}
.footer-section p {
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 0.95em;
}
.contact-info p {
    margin-bottom: 8px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #BB4144;
}
.footer-bottom {
    background-color: #0F0F0F;
    padding: 20px 5%;
    text-align: center;
    border-top: 1px solid #333;
}
.footer-copyright p {
    margin: 0;
    font-size: 0.9em;
    color: #999;
    text-align: center;
}
#footer::before {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.5) 10%,
        rgba(220,0,0,0.7) 50%,
        rgba(255,255,255,0.5) 90%,
        rgba(255,255,255,0) 100%
    );
    opacity: 0.85;
}
/* FIN Footer */


/* DEBUT Responsive Footer ----------------------------------------------------- */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 5%;
    }
    .footer-section {
        text-align: center;
    }
    .footer-logo img {
        width: 120px;
    }
    .footer-section h3 {
        font-size: 1.1em;
        margin-bottom: 15px;
    }
    .footer-section p {
        font-size: 0.9em;
        text-align: center;
    }
}
@media screen and (max-width: 480px) {
    .footer-content {
        padding: 20px 3%;
    }
    .footer-bottom {
        padding: 15px 3%;
    }
}
/* FIN Responsive Footer */