/* FOOTER */

.footer-container {
    padding: 50px 100px;
    background: #212121;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#full-logo {
    display: block;
}
#responsive-logo {
    display: none;
}

.footer-social-media {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
    width: fit-content;
}

.footer-follow-us {
    color: #eeeeee;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    line-height: 23px;
}

.footer-social-medias-listing {
    padding: 0;
    display: flex;
    list-style: none;
    gap: 10px;
}

.footer-social-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
}

.footer-social-link {
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white;
}

.footer-social-img {
    width: 100%;
    height: 100%;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.footer-links a {
    color: #eeeeee;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 10px;
}

.coming-soon {
    opacity: 0;
    color: white;
    background-color: var(--accent-color-1);
    padding: 4px;
    margin-top: -50px;
}
.coming-soon:hover {
    opacity: 1;
}
.footer-links a:hover + .coming-soon {
    opacity: 1;
}

.footer-banner {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    background: #cd0c75;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-copyright-text {
    color: #eeeeee;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 970px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 50px 80px;
    }
    .footer-social-wrapper {
        width: 40px;
        height: 40px;
    }

    .footer-social-media {
        align-items: center;
    }
    .footer-social-medias-listing {
        padding: 0;
    }
    .footer-links {
        align-items: center;
    }
    #full-logo {
        display: none;
    }
    #responsive-logo {
        display: block;
    }
}
