.footer-content {
    padding-top: 75px;
    padding-bottom: 100px;
}

.footer {
    background-image: url("../images/bg-footer.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
}

.footer-infos p {
    padding-top: 10px;
    font-size: 14px;
    font-family: "Inter",sans-serif;
    line-height: 25px;
    font-weight: 400;
}

.reseaux {
    display: flex;
    gap: 20px;
    padding-top: 26px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.footer-infos {
    flex: 1;
}

.footer-menu {
    flex: 1;
}

.adress {
    flex: 1;
}

.footer-menu-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-item ul li {
    padding-top: 10px;
}

.footer-menu-item ul li a {
    text-decoration: none;
    color: white;
    font-size: 13px;
    font-family: "Inter",sans-serif;
    line-height: 25px;
    font-weight: 400;
}

.footer-menu-item ul li a:hover {
    text-decoration: underline;
}

.adress-footer {
    display: flex;
    align-items: center;
    gap: 10px;  
}

.adress-footer p {
    font-size: 14px;
    font-family: "Inter",sans-serif;
    line-height: 25px;
    font-weight: 400;
}

.adress {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

#footer-copyright {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    font-family: "Inter",sans-serif;
    padding-bottom: 20px;
}

#footer-copyright a {
    text-decoration: underline;
    color: white;
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-infos {
        flex: 1 1 100%;
    }

    .footer-menu {
        flex: 1 1 calc(33% - 30px);
    }

    .adress {
        flex: 1 1 calc(33% - 30px);
    }
}

/* Tablet small - 768px */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 35px;
        padding-top: 50px;
        padding-bottom: 60px;
    }

    .footer-infos p {
        padding-top: 20px;
    }

    .footer-infos p br {
        display: none;
    }

    .footer-menu {
        width: 100%;
    }

    .adress {
        width: 100%;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    .footer-content {
        padding-top: 35px;
        padding-bottom: 40px;
        gap: 30px;
    }

    .footer-infos p {
        font-size: 13px;
        padding-top: 15px;
    }

    .adress-footer p {
        font-size: 13px;
    }

    .footer-menu-item ul li a {
        font-size: 12px;
    }

    #footer-copyright {
        font-size: 12px;
        padding: 10px 15px 15px;
    }

    .reseaux {
        padding-top: 20px;
    }
}
