/* 
 * Author: Théo Cornu, Lola , Enzo
 */

body {
    margin: 0;
}

.footer {
    font-family: "Comic Sans MS", sans-serif;
}

ul {
    margin: 0;
    padding: 0;
}

/* Footer style */
footer {
    background-color: #226979;
    color: #000;
    padding: 40px 0;
    width: 100%;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 2fr 1fr;
}

/* Logo design */
.footer-logo {
    justify-self: center;
}

.footer-logo img {
    max-width: 180px;
    transition: transform 0.3s;
}

.footer-logo img:hover {
    transform: scale(0.8);
}

/* Links style */
.footer-inner ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
}


.footer-links li {
    margin-right: 120px;
}

.linkTitle a {
    font-weight: bold;
}

.linkTitle a,
.linkSubstitle a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s;
}

.linkSubstitle a:hover {
    color: #cccace;
}

.link {
    justify-self: center;
    margin: 5% 0;
}

.linkTitle {
    margin-bottom: 10%;
}

.linkSubstitle {
    color: rgb(95, 94, 94);
    margin: 1% 0;
}

#ResLogo {
    display: flex;
    flex-direction: row;
}

#follow-text-div p {
    margin: 0 0 10%;
}

.scroll-to-top {
    cursor: pointer;
    
}


/* Style of social media icons */
.footer-social {
    display: flex;
    grid-column: 4;
    align-items: flex-end;
}

.footer-social ul {
    list-style-type: none;
    display: flex;
}

.footer-social li {
    margin-right: 10px;
}

.footer-social a img {
    max-width: 30px;
    transition: transform 0.3s;
}

.footer-social a img:hover {
    transform: scale(0.8);
}

.Facebook {
    margin-right: 10%;
}

.Instagram {
    margin-right: 10%;
}

/* Style of the text 'follow us!' */
#follow-text {
    font-weight: bold;
}

#follow-text-div {
    margin-right: 4.5%;
}

#footerH {
    height: 385px;
}

@media only screen and (max-width: 700px) {
    .footer-logo img {
        max-width: 100px;
    }

    .footer-inner {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        text-align: center;
    }

    #footerH {
        height: 885px;
    }

    .linkSubstitle {
        margin: 1% 0;
    }

    .linkTitle {
        margin-bottom: 3%;
    }

    #legalNotice {
        margin-bottom: 5%;
    }
}
