*{
    margin: 0;
}

 /***** body *****/
body{
    font-family: 'Roboto', sans-serif;
}

body::-webkit-scrollbar{
    display: none;
}


 /***** navbar *****/
.navbar{
    width: 100%;
    height:70px;
    background-color: black;
}

.navbar.active{
    background-color: rgba(100, 148, 237, 0.216);
}

.navbar-container{
    display: flex;
    align-items: center;
    padding: 0 50px;
    height:100%;
    color: white;
    font-family: 'Sen', sans-serif;
}

.navbar-container.active{
    color: black;
}

 /***** logo *****/
.logo-container{
    flex-grow: 1;
    margin-right: -30px;
}

.logo{
    font-size: 30px;
    color: rgb(17, 127, 185);
    
}

 /***** menu *****/
.menu-container{
    flex-grow: 5;
}

.menu-list{
    display: flex;
    list-style: none;
}

.menu-list-item{
    margin: 15px;
}

.menu-list .scroll a{
    text-decoration: none;
    color: white;
}

.menu-list-item.active{
    font-weight: bold;
}

 /***** profile section *****/
.profile-container{
    flex-grow: 2;
    display: flex;
    justify-content: flex-end;
}

.profile-picture{
    height:30px;
    width:30px;
    border-radius: 50%;
    object-fit: contain;
}

.profile-container-text{
    margin:0 20px;
}

.toggle{
    height:20px;
    width:40px;
    background-color: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
}

.toggle.active{
    background-color: black;
}

.toggle-icon{
    color: goldenrod;
}

.toggle-ball{
    width:18px;
    height:18px;
    background-color: black;
    position: absolute;
    right:1px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.5s ease all;
}

.toggle-ball.active{
    background-color: white;
    transform: translateX(-20px);
}

 /***** sidebar *****/
.sidebar{
    z-index: 1;
    height: 100%;
    width: 50px;
    position: fixed;
    background-color: black;
    display:flex;
    flex-direction: column;
    align-items: center;
    top:0px;
}

.sidebar.active{
    background-color: rgba(100, 148, 237, 0.216);
}

.sidebar-item{
    color: white;
    margin-top: 75px;
}

.sidebar-item.active{
    color:black;
}

/***** entertainment content container *****/

.container{
    background-color: #151515;
    min-height: calc(100vh - 50px);
    color:white;
}

.container.active{
    background-color: whitesmoke;
    color:black;
}

.content-container{
    margin-left: 50px;
}

.featured-content{
    overflow: hidden;
    position: relative;
    height: 50vh;
    padding:50px;
    border-top: 1px solid grey;
    border-bottom: 1px solid grey;
}

.featured-content.active{
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}

.background-video{
    position: absolute;
    top: 50px;
    left:50px;
    margin-left: -50px;
    margin-top: -50px;
    width:calc(100vw - 50px);
    object-fit:  cover;
    opacity: 0.5;
    min-height: 100%;
    
}

.background-video.active{
    opacity:0;
}

.featured-desc{
    width:500px;
    color:lightgrey;
    position:  relative;
    margin: 30px 0;
    z-index: 10000;
}

.link-to-video{
    color: white;
    background-color: transparent;
    text-decoration: none;
}

.featured-button{
    position:  relative;
    background-color: rgb(17, 127, 185);
    color:white;
    padding:10px 20px;
    border-radius:10px;
    border:none;
    outline:none;
    cursor: pointer;
    z-index: 10000;
}

.movie-list-container{
    padding: 20px;
}

.movie-list-wrapper{
    position: relative;
    overflow: hidden;
}

.movie-list{
    display: flex;
    align-items: center;
    height: 300px;
    transition: all 1s ease-in-out;
    transform: translateX(0);
}

.movie-list-item{
    margin-right: 30px;
    position: relative;
}

.movie-list-item-img{
    width: 260px;
    height: 200px;
    object-fit: cover;
    transition: all 0.7s ease-in-out;
    border-radius:10px; 
}

.movie-list-item:hover .movie-list-item-img{
    transform: scale(1.2);
    margin: 0 30px;
    opacity: 0.5;
}

.movie-list-item:hover .movie-list-item-button,
.movie-list-item:hover .movie-list-item-title,
.movie-list-item:hover .movie-list-item-desc{
    opacity: 1;
}

.movie-list-item-title{
    position:absolute;
    top:15px;
    left:30px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    opacity: 0;
    transition: all 0.7s ease-in-out;
}

.movie-list-item-desc{
    position:absolute;
    top:35px;
    left:30px;
    width:240px;
    color: white;
    opacity: 0;
    transition: all 0.7s ease-in-out;

}

.movie-list-item-button{
    position: absolute;
    top: 145px;
    left:30px;
    opacity: 0;
    transition: all 0.7s ease-in-out;
    background-color: rgb(17, 127, 185);
    color:white;
    padding:10px 20px;
    border-radius:10px;
    border:none;
    outline:none;
    cursor: pointer;
}

/***** arrow for sliding movie list wrapper *****/
.arrow{
    font-size:50px;
    position: absolute;
    top:120px;
    right: 0px;
    opacity: 0.5;
    cursor: pointer;
}


/***** FAQ SECTION *****/

.faq-section{
    margin-left:50px;
    overflow: hidden;
    padding-bottom: 50px;
}

.faq-heading{
    height:50px;
    width: calc(100vw - 50px);
    border-bottom: #777;
    background-color: black;
    color:#ffffff;
    padding:15px;
    font-size: 2rem;
    
}

.faq-heading.active{
    background-color: rgba(100, 148, 237, 0.216);
    color: black;
}

.faq-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: #151515;
    padding-bottom: 50px;
}

.faq-container.active{
    background-color: whitesmoke;
}

/* Style the buttons that are used to open and close the faq-page body */
.faq-page {
    color: #fcfcfc;
    cursor: pointer;
    padding: 30px 20px;
    width: 60%;
    border: none;
    outline: none;
    transition: 0.4s;
    margin: auto;
    margin-bottom: 10px;
    margin-top: 20px;
}

.faq-page.active{
    color: black;
}

.faq-body{
    margin: auto;
   width: 50%; 
   padding: 15px;
   font-size: 20px;
}

.faq-body p{
    color: antiquewhite;
}

.faq-body.active p{
    color: black;
}

.faq-page:hover {
    background-color: #f9f9f922;
}

.faq-page.active:hover {
    background-color: #f9f9f922;
    transform: scale(1.1);
}

/* Style the faq-page panel. Note: hidden by default */
.faq-body {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    transition:0.4;
}

.faq-page:after {
    content: '\02795' ;
    /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #ffffff;
    float: right;
    margin-left: 5px;
}

.plusminus:after {
    content: "\2796";
    /* Unicode character for "minus" sign (-) */
}


/***** Responsiveness of the page *****/
@media only screen and (max-width:1005px){
    .featured-desc{
        width: 300px;
    }

    .menu-container{
        display:none;
    }
}

@media only screen and (max-width:500px){
    .logo{
        font-size: 20px;
    }

    .profile-container{
        margin-right: -5px;
    }

    .profile-picture{
        height:30px;
        width:30px;
        display: none;
    }
}

