@import url('reset.css');
@import url('variable.css');
@import url('color.css');
@import url('police.css');

/* POUR L'ANCRE DU LOGO VERS LE HAUT DE LA PAGE */
html {
    scroll-behavior: smooth;
}






footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Afacad';
    background-color: white;
    padding: 50px 0 10px 0;
}

.footerUp{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 10%;
    width: 100%;
}

.containerLogoFooter{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.containerColumnFooter{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 70%;
}

.columnFooter{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 15%;
}

.socialMediaFooter{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.socialMediaFooter svg{
    width: 30px;
    transition: 0.3s ease;
}

.socialMediaFooter svg:hover{
    transform: scale(1.10);
}

.textFooter{
    font-size: 15px;
    margin: 0;
    padding-top: 10px;
}

.titleColumnFooter{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.01;
}

.ulFooter{
    list-style: none;
    margin: 0;
    padding: 0 0 20px 0;
}

.aFooter{
    display: block;
    text-decoration: none;
    color: #000;
    font-size: 17px;
    line-height: 1.01;
    transition: 0.3s ease;
}

.aFooter:hover{
    color: #4d3dff;
    transform: translateY(-1px);
    opacity: 0.9;
}

.uppercaseFooter{
    text-transform: uppercase;
}

.footerDown{
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-top: 1px solid rgba(82, 81, 81, 0.5);
    margin-top: 30px;
}

.footerDown p{
    font-size: 12px;
    font-weight: 500;
    margin: 12px 0 0 0;
    text-align: center;
}

.footerDown span{
    text-decoration: none;
    color: #000;
    font-size: 12px;
    font-weight: 500;
}

.footerDown a{
    text-decoration: underline;
    color: #000;
    font-weight: 700;
    transition: 0.3s ease;
}

.footerDown a:hover{
    color: #4d3dff;
}

.lineMobile{
    display: none;
}

@media (max-width: 1024px){
    .footerUp{
        flex-direction: column;
    }

    .containerColumnFooter{
        width: 100%;
    }

    .textFooter{
        width: 25%;
    }

    .footerUpLeft{
        flex-direction: column;
        margin-left: 30px;
    }

    .footerUpRight{
        flex-direction: column;
    }

    .columnFooter{
        width: 100%;
        margin: 0 30px 0 30px;
    }   
}

@media (max-width: 630px){

    .footerUp{
        align-items: center;
        margin: 0;
    }

    .containerLogoFooter{
        align-items: center;
        width: 100%;
    }

    .containerColumnFooter{
        flex-direction: column;
        align-items: center;
    }
    .aFooter { text-align: center; }

    .logoFooter{text-align: center;}

    .columnFooter{
        align-items: center;
        margin: 0;
    }

    .textFooter{
        width: 50%;
        text-align: center;
    }

    .lineMobile{
        display: block;
        width: 120px;
        height: 1px;
        background-color: rgba(82, 81, 81, 0.5);
        margin: 30px 0 30px 0;
    }
}

.svgSizeSocialNetwork svg {
    width: 30px;
    height: 30px;
    transition: transform 0.2s ease;
}

.svgSizeSocialNetwork svg:hover {
    transform: scale(1.1);
}