/* Styles du pied de page pour MLA */

.footer {
    background-color: var(--dark);
    color: var(--white);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-dot.png');
    opacity: 0.05;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

/* Logo styles pour le footer */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    text-decoration: none;
}

.footer-logo-image {
    height: 70px;
    width: auto;
    margin-right: 10px;
    /* Pour permettre à l'image de bien ressortir sur fond sombre */
    filter: brightness(1.1);
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.footer-logo-text span {
    color: var(--secondary);
}

.footer-logo span {
    color: var(--secondary);
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social-link:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.footer-title {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: var(--radius-full);
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    margin-right: 12px;
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
}

.copyright {
    font-size: 14px;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--white);
}

/* Responsive styles pour le logo du footer */
@media (max-width: 768px) {
    .footer-logo-image {
        height: 40px;
    }
    
    .footer-logo-text {
        font-size: 20px;
    }
}

/* Option: version empilée pour les très petits écrans */
@media (max-width: 480px) {
    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-logo-image {
        margin-right: 0;
        margin-bottom: 8px;
    }
}