@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

.navigation
{
    position:sticky !important;
    top: 0px; 
    z-index: 999;
    background-color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 33px; 
    height: 70px; 
    width: 100vw;
    border-bottom:2px solid #c0b590;
}
.navigation .logo:hover
{
    transform: scale(0.8);
    transition: 333ms;
    cursor: pointer;
}
.navigation .name a:hover{
    color: #f7140c;
}

.navigation .options select{
    border: 0px;
    padding: 3px;
    background-color: transparent;
    color: rgb(252, 250, 250);
    border-bottom: 2px solid rgb(255, 238, 0);
    align-items: right;
    display: flex;
    justify-content: space-around;
}
.navigation select option{
    color:red;
    background-color:transparent;
}

.navigation .links ul{
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: 630px;
    list-style-type: none;
    margin-top: 20px;
}
.navigation .links ul li a{
    text-decoration: none;
    align-items: center;
    color: rgb(250, 250, 247);
}
.navigation .links ul li a:hover{
color: rgb(255, 0, 0);
border-bottom:2px solid #f3f70c;
}
.navigation .links ul li a i{
    margin:5px;
}

/* home */
section{
    width:100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#home
{
    background: linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.4)),url(background.jpg); 
    background-size: cover;
    background-position: center;
    flex-direction: column;
}
#home h1{
    font-size: 81px;
    color: white;
    letter-spacing: 3px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#home h2{
    color: white;
    word-spacing: 12px;
}
#home h1:hover{
    color: red;
    cursor: pointer;
}
#home h2:hover{
    color: gold;
    cursor: pointer;
}

/* slides */
#slides{
    margin-top: 21px;
}

/* language opts */
.options select{
    border: 0px;
    background-color:transparent;
    color: black;
    border-bottom: 2px solid rgb(255, 0, 0);
}

/* movie cards */
#RM{
    padding-left: 500px;
}
.card-section{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: 2px;
    text-align: center;
    height: 100%;
}
#root{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#root a{
    text-decoration: none;
    color: rgb(252, 249, 249);
    font-weight:bolder;
}
#root a:hover{
    color: rgb(234, 250, 6);
    background-color: #0e0a0a;
}
.img-text{
    align-items: center;
    justify-content: space-around;
    font-size: 5px;
}
.img-text h4{
    color: red;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight:500;
}
.card{
    width:215px;
    height: 400px !important;
    padding: 7px 7px;
    margin:20px 60px;
    justify-content:space-between;
    box-shadow: 15px 20px 20px gray,
    inset 2px 2px 5px white;
    transition: .2s;
    overflow: hidden;
    border-radius: 20px !important;
}
.card:hover{
    box-shadow: inset 2.5px 2.5px 5px gray,inset -2px -2px 5px white;
    transition: .2s;
    transform: scale(0.95);
}
.card .img-box img{
    width: 200px;
    height: 282px;
    border-radius: 20px;
}
.card-section2{
    margin-top: 54px;
    display: flex;
    margin-left: 320px;
    margin-right: 250px;
    font-size: 50px;
    letter-spacing: 2px;
    font-weight: 700;
}
footer{
    width: 100vw;
    height: 40px;
    background: black;
    margin-top:20px;
    text-align: center;
    color: red;
    padding:7px;
    cursor: pointer;
}
footer a{
    text-decoration: none;
    color: red;
    padding-left: 850px;
}
footer a:hover{
    color: gold;
}
#threeBarMenu{
    font-size: 25px;
    color: white;
    cursor: pointer;
    display: none;
}

/* POPUP */
#popup {
    display: none;
    background-color: rgba(75, 65, 65, 0.904);
    width: 100vw;
    height: 100vh;
    margin-top: 25px;
}
#popup .info{
    background-color: black;
    height: 80%;
}
#popup .info .img-box {
    padding-left: 90px;
    margin-top: 50px;
}
#popup .info .img-box h3{
    color: aqua;
    margin-left: -185px;
    margin-top:350px;
}

#popup .info .content{
    padding-left: 150px;
}
.info {
    width: 90%; 
    max-width: 975px; 
    height: auto; 
    padding: 7px;
    margin: 67px auto; 
    display: flex;
    justify-content: space-around;
    transition: .2s;
    overflow: hidden;
    border-radius: 10px !important;
    border: 3px dotted gold;
}
.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
    color: white;
    margin-top: 20px; 
}
.img-box {
    width: 350px;
    height: 333px;
    display: flex;
}
.info .img-box img {
    width: 100%; 
    height: auto; 
    border-radius: 10px;
    margin-top: 50px;
    display: flex;
    justify-content: space-around;
    border: 2px dotted rgb(247, 250, 247);
}
#close-popup {
    color: white;
    position: absolute;
    top:60px; 
    right: 210px;
    font-size: bold;
    cursor: pointer;
    font-size: 66px;
    transition: 1s;
}
#close-popup:hover {
    color:aqua;
    transform: rotate(90deg);
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width:1000px){
    .navigation .links,.options,.search-bar{
        display: none;
    }
    #home h1{
        display: none;
    }
    #icon{
        font-size: 33px;
        cursor: pointer;
        display: block;
        position: absolute;
        right: 30px;
        top: 18px;
        color: white;
    }
    .navigation{
        display: flex;
        justify-content: space-between;
        padding: 0px 30px;
        flex-direction: column;
        align-items:center;
        width: 100%;
    }
    .navigation .links{
        width:100%;
    }
    .navigation .links ul{
        flex-direction: column;
        align-items:center;
        width: 100%;
        height: 350px;
        background-color:rgb(0, 0, 0);   
    }
    .navigation .options{
        margin-top: 21px;
        margin-left: 50px;
    }
    .links.active{
        display: block;
    }
    .options.active2{
        display: block;
    }
    #root .card {
        width: 70%; 
        margin: 10px 0;
    }
    .info {
        flex-direction: column; 
        margin: 20px;
    }
    .info .img-box {
        margin: 0 auto;
    }
    #close-popup {
        font-size: 40px; 
        top: 10px; 
        right: 10px; 
    }
}
