/* Utility Styling */


/* Actual Styling */
body {
    background-color: black;
}

.mainWrapper {
    margin: auto;
    max-width: 1920px;
}

.heroWrapper {
    background-image: url('assets/images/herobg.jpg');
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: max(835px, 50vw);

}

.heroWrapper>div:first-child {
    background-color: rgba(0, 0, 0, 0.70);
    height: 100%;
    /* box-shadow: inset 83px -85px 90px 48px rgba(0, 0, 0, 0.5), inset -83px -85px 90px 48px rgba(0, 0, 0, 0.5), inset 0px 30px 30px 30px rgba(0, 0, 0, .75); */
    box-shadow: inset 10px -85px 90px 8px rgba(0, 0, 0, 0.5), inset -10px -85px 90px 8px rgba(0, 0, 0, 0.5), inset 0px 50px 30px 8px rgba(0, 0, 0, .75);
    /* background: #000000;
background: linear-gradient(45deg, rgba(0, 0, 0, 0.9) 5%, rgba(0, 0, 0, 0.71) 50%, rgba(0, 0, 0, 0.9) 95%); */
    display: flex;
    flex-direction: column;

}

.navBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.35rem 9rem;

    .logo {
        width: 150px;
    }
}

.navBarRight {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.hero {
    translate: 0 -20px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    max-width: 600px;

    * {
        text-align: center;
    }
}

.hero>* {
    height: fit-content;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.heroHeading {
    gap: 1rem;

    h1 {
        font-weight: 900;
        font-size: 56px;
        line-height: 1.2;
    }

    p {
        font-size: 20px;
        font-weight: 600;
    }
}

.heroSignup {
    gap: 1rem;
    padding-block: .5rem;
}

.signupForm {
    display: flex;
    justify-content: space-between;
    gap: .5rem;

    >div {
        flex: 1;
    }

}

.emailWrapper {
    position: relative;

    span {
        display: none;
        position: absolute;
        width: max-content;
        left: 1rem;
        top: 4.5rem;
        font-size: 14px;
        color: #EB3942;
    }
}

/* Bottom */
.bottomWrapper {
    box-shadow: 0px 0px 49px 31px rgba(0, 0, 0, 0.75);
    background-color: black;
    translate: 0 -35px;
    display: flex;
    position: relative;
    gap: 2rem;
    flex-direction: column;
    align-items: center;
}

.bottomWrapper>* {
    width: 80%;
    margin-inline: auto;
}

/* ##To do --> make arrow to instant navigate to first/last show */
.trendingWrapper {
    display: flex;
    flex-direction: column;

    h2 {
        font-weight: 600;
    }
}

.trendingShows {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    overflow: scroll;
    padding: .8rem;
}

.trendingShows>div {
    flex-shrink: 0;
    padding: .5rem;
    position: relative;
    transition: all .2s ease-in-out;
    cursor: pointer;

    span {
        font-weight: 700;
        font-size: 100px;
        position: absolute;
        left: -7%;
        bottom: -2.5%;
        color: black;
        text-shadow: 1.5px 1.5px 0px white, -1.5px 1.5px 0px white, 1.5px -1.5px 0px white, -1.5px -1.5px 0px white;
    }

    img {
        border-radius: 10px;
        height: 250px;
    }

    &:hover {
        scale: 1.05;
    }
}

.reasonsWrapper {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin-block: 1.5rem;
}

.reasonsBoxes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    gap: .9rem;
}

.reasonsBox {
    height: 270px;
    flex: 1;
    background: #1A2145;
    background: linear-gradient(135deg, rgba(26, 33, 69, 1) 0%, rgba(33, 15, 24, 1) 100%);
    padding: 1.2rem 1rem;
    border-radius: 15px;
    display: flex;
    gap: .8rem;
    flex-direction: column;
    position: relative;

    h3 {
        font-size: 1.5rem;
        font-weight: 600;
    }

    p {
        color: var(--grey-100);

    }

    span {
        position: absolute;
        right: 1.2rem;
        bottom: 1rem;
    }
}

.faqsWrapper {
    display: flex;
    flex-direction: column;
    gap: .8rem;

    h2 {
        font-weight: 600;
    }

    h3 {
        font-weight: 400;
        font-size: 1.5rem;
    }

}

.faqs {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.faq {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    overflow: hidden;
}

.question {
    background-color: var(--grey-700);
    transition: all .1s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    width: 100%;
    cursor: pointer;

    img {
        transition: all .1s ease-in-out;
        rotate: 0deg;
    }

    &:hover {
        background-color: var(--grey-200);
    }
}

.answer {
    transition: all .5s ease-in-out;
    background-color: var(--grey-700);
    font-size: 1.5rem;
    padding: 1.5rem;
    line-height: 1.3;
    display: none;
    flex-direction: column;
    gap: 1.75rem;
}

.showAnswer {
    /* height: auto; */
    display: flex;
}


.footer {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 3rem;
    padding-bottom: 8rem;
}

.footerSignup {
    width: 783px;
    display: flex;
    flex-direction: column;
    gap: 1rem;

    h3 {
        font-weight: 400;
        text-align: center;
        font-size: 16px;
    }
}

.moreLinksWrapper {
    color: rgba(255, 255, 255, 0.75);
    align-self: flex-start;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;

    span:first-child {
        font-size: 1rem;
    }

    span:last-child {
        color: rgba(255, 255, 255, 0.5);

        a {
            color: #448EF4;
        }
    }

    a {
        text-decoration: underline;
    }
}

.moreLinksWrapper .langSelectBase {
    color: white;
    font-size: 1rem;
    margin-top: 2rem;
}

.links {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .8rem;
}

.loading {
    .loader {
        width: 25px;
        height: 25px;
        border: solid white;
        border-width: 2px 2px 0 0;
        border-radius: 50%;
        animation: loading 2s linear 0s infinite;
        position: absolute;
    }



    &.arrow {
        position: relative;
        opacity: .6;
        pointer-events: none;
        cursor: wait;
    }

    &.arrow>span,
    &.arrow>img {
        opacity: 0;
    }
}

@keyframes loading {
    from {
        rotate: 0deg;
    }

    to {
        rotate: 360deg;
    }
}