
/* Footer (global) */

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5% 5%;
    background-color: var(--blue-color);
    color: white;
    height: 100%;
    gap: 30px;
}

.links {
    display: flex;
    flex-direction: row;
    gap: 25px;
    flex-wrap: wrap;
    align-self: stretch;
    height: 100%;
}

.links-category {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0px;
    text-decoration: none;
    margin-block-start: 0;
    flex: 1 0 0;
    color: #FFF;
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.links-category > h2 {
    color: #FFF;
    font-family: koliko;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.links-category > ul > li > a {
    font-weight: 300;
    transition: cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.links-category > ul > li > a:hover {
    font-weight: 500;
}

#footer-logo {
    height: 150px;
    width: 150px;
    aspect-ratio: 1 / 1;
    transition: cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

#links-category-logo {
    align-items: center;
}

.rights > p {
    color: #FFF;
    text-align: center;
    font-family: Outfit;
    font-size: 20px;
    font-weight: 200;
    padding: 0;
    margin: 0 0;
}

#footer-logo:hover {
    transform: scale(110%) rotate(5deg);
}

@media screen and (max-width: 1500px) and (min-width: 1000px) {
    .links-category > h2 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    #footer-logo {
        width: 100px;
        height: 100px;
    }
}

@media screen and (max-width: 1000px) {
    .links-category > h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    #footer-logo {
        width: 75px;
        height: 75px;
    }
    .links {
        flex-direction: column;
        gap: 10px;
        align-content: center;
    }
    .links-category {
        align-content: center;
        text-align: center;
    }
    footer {
        padding: 50px 5%;
    }
}