@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Comme:wght@100&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

footer {
    position: relative;
    min-height: 50vh;
    width: 100%;
    background: #040626;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 60px;
    column-gap: 30px;
}

.footer-top {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-link-img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-link-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 10px;
    animation: shadow 1.5s linear infinite;

}

@keyframes shadow {
    0% {
        box-shadow: 0 0 30px pink;
    }

    25% {
        box-shadow: 0 0 35px #e99fab;
    }

    50% {
        box-shadow: 0 0 40px #e78696;
    }

    75% {
        box-shadow: 0 0 45px #ec5c74;
    }

    100% {
        box-shadow: 0 0 30px pink;
    }
}

.footer-join-us {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
}

.footer-join-us h2 {
    font-size: 44px;
    text-transform: uppercase;
    font-family: 'Comme', sans-serif;
    color: #dfa811;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.footer-all-link-box {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 50px;
}

.link-box {
    display: flex;
    flex-direction: column;
    padding: 10px;
    row-gap: 10px;
    border-bottom: 2px solid pink;
}

.link-box a {
    text-decoration: none;
    font-size: 18px;
    color: aqua;
    transition: 0.2s ease-in-out;
    text-transform: capitalize;
}

.link-box a:hover {
    color: #caeeee;
    transform: scale(1.03);
}

.footer-bottom-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
}

.copyright {
    font-size: 20px;
    color: #fadff8;
}

.footer-social-media {
    display: flex;
    column-gap: 20px;
}

.footer-social-media i {
    font-size: 24px;
    color: #fff;
    transition: 0.3s ease-in-out;
}

.fa-instagram:hover {
    color: #ff2bb8;
}

.fa-facebook:hover {
    color: #2814a8;
}

.fa-twitter:hover {
    color: #77a4ff;
}

.fa-linkedin:hover {
    color: #4584cc;
}

@media (max-width:1080px) {
    footer {
        padding: 20px 10px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-join-us {
        width: 100%;
    }

    .footer-bottom-link {
        flex-direction: column-reverse;
        padding: 10px;
        justify-content: center;
    }

    .copyright {
        margin-top: 10px;
    }

    .footer-all-link-box {
        width: 100%;
    }

}

@media (max-width:500px) {

    .footer-all-link-box {
        flex-direction: column;
    }
}

/* MODAL CSS */

/* Example CSS for modals */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition:  1s ease-in-out;
}

.modal-content {
    
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
}
.modal button{
    border: none;
    outline: none;
}
.modal i{
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 30px;
    color: #ec5c74;
    cursor: pointer;
}
