*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar{
    display: none;
}

body{
    color: white;
    background-color: black;
    font-family: sans-serif;
}

/* HERO SECTION */
.showcase{
    width: 100%;
    height: 93vh;
    position: relative;
    background-image: url("./background.jpg") !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.showcase::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.6);
    box-shadow: inset 120px 100px 250px black,
                inset -120px -100px 250px black;

    z-index: 1;
}

.showcase-top{
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
}

/* NAVBAR */
.navbar{
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 5rem;
}

.logo-text{
    color: rgb(229, 9, 20);
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-right{
    display: flex;
    align-items: center;
    justify-content: center;
}

.english{
    background-color: rgba(0, 0, 0, 0.65);
    color: white;
    padding: .8rem 2rem;
    border: 2px solid rgba(128, 128, 128, 0.675);
    outline: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

.english:hover{
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.79);
}

.sign-in{
    padding: .8rem 1.3rem;
    font-size: 1rem;
    background-color: rgb(213, 11, 11);
    color: white;
    border: none;
    border-radius: 6px;
    margin-left: 2rem;
    cursor: pointer;
}

.sign-in:hover{
    opacity: .9;
}

/* HERO TEXT */
.title-container{
    padding: 5rem 6rem;
}

.ultimate{
    font-size: 68px;
    max-width: 980px;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 1.8rem;
    font-family: 'Konkhmer Sleokchher', cursive;
}

.watch{
    margin-bottom: 2.2rem;
}

.ready{
    color: rgb(229, 229, 229);
    margin-bottom: 1.2rem;
}

.title-down{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#eml,
#eml2{
    padding: 1rem 1rem;
    font-size: 1.1rem;
    width: 380px;
    background-color: rgba(0, 0, 0, 0.468);
    border: 1.2px solid rgba(126, 125, 125, 0.811);
    backdrop-filter: blur(5px);
    border-radius: 6px;
    margin-right: 1.5rem;
    color: white;
}

#eml::placeholder,
#eml2::placeholder{
    color: rgb(170, 170, 170);
}

input:focus{
    outline: none;
    color: white;
    border: 1.2px solid rgba(209, 209, 209, 0.811);
}

.started{
    padding: .9rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    background-color: rgb(213, 11, 11);
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.started:hover{
    opacity: .9;
}

/* SECOND SECTION */
.second-container{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem 0;
}

.items{
    border: 1.5px solid rgba(157, 156, 156, 0.461);
    width: 660px;
    height: 500px;
    padding: 2rem 5rem;
    margin: .6rem;
    border-radius: 1.2rem;
    background: linear-gradient(
        to bottom right,
        rgba(51, 51, 51, 0.507),
        rgba(51, 51, 51, 0.507),
        rgba(134, 5, 5, 0.36)
    );
    transition-duration: .3s;
}

.items:hover{
    transform: scale(0.95);
}

.items > img{
    width: 460px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.items > h2{
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.items > p{
    margin-top: 12px;
    line-height: 1.5;
}

/* FAQ AND FOOTER SECTION */
.third-container{
    padding: 3rem 12rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.question{
    margin-bottom: 1rem;
    text-align: left;
}

.collapsable{
    background-color: rgb(83, 83, 83);
    color: white;
    cursor: pointer;
    padding: 1.5rem;
    margin-top: .9rem;
    width: 100%;
    max-width: 1150px;
    text-align: left;
    font-size: 21px;
    border: none;
    outline: none;
    transition-duration: .2s;
}

.active,
.collapsable:hover{
    background-color: rgb(38, 38, 38);
}

.content{
    width: 100%;
    max-width: 1150px;
    font-size: 18px;
    padding: 1rem 3rem;
    display: none;
    overflow: hidden;
    background-color: rgb(20, 20, 21);
    color: white;
    transition-duration: .2s;
    line-height: 1.5;
}

.dwn{
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.last-in{
    margin-top: 1.5rem;
}

.call{
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

/* FOOTER EXACT COLUMN STYLE */
.footer{
    width: 100%;
    max-width: 1150px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 5rem;
}

.footer div{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer p{
    color: gray;
    margin: 0;
    font-size: 1rem;
}

.netflix{
    margin: 2rem 0rem;
    color: rgb(203, 18, 18);
}

/* RESPONSIVE */
@media screen and (max-width: 1200px){
    .third-container{
        padding: 3rem 6rem;
    }

    .footer{
        column-gap: 3rem;
    }
}

@media screen and (max-width: 1024px){
    .navbar{
        padding: 2rem 3rem;
    }

    .title-container{
        padding: 4rem 3rem;
    }

    .ultimate{
        font-size: 55px;
        max-width: 800px;
    }

    .items{
        width: 90%;
        height: auto;
        padding: 2rem;
    }

    .third-container{
        padding: 3rem;
    }
}

@media screen and (max-width: 768px){
    .showcase{
        height: auto;
        min-height: 90vh;
    }

    .navbar{
        padding: 1.5rem;
    }

    .logo-text{
        font-size: 2rem;
    }

    .english{
        padding: .6rem 1rem;
    }

    .sign-in{
        padding: .6rem 1rem;
        margin-left: 1rem;
    }

    .title-container{
        padding: 4rem 1.5rem;
    }

    .ultimate{
        font-size: 40px;
        max-width: 100%;
    }

    .title-down{
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    #eml,
    #eml2{
        width: 100%;
        margin-right: 0;
    }

    .third-container{
        padding: 2rem 1.5rem;
    }

    .footer{
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 480px){
    .navbar{
        padding: 1rem;
    }

    .logo-text{
        font-size: 1.6rem;
    }

    .english{
        font-size: .9rem;
        padding: .5rem .8rem;
    }

    .sign-in{
        font-size: .9rem;
        padding: .5rem .8rem;
    }

    .ultimate{
        font-size: 32px;
    }

    .watch{
        font-size: 1.1rem;
    }

    .items{
        padding: 1.5rem;
    }

    .footer{
        grid-template-columns: 1fr;
    }
}
