*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body{
    background-color: black;
}
.container{
  height: 100vh;
  width: 100%;
}
.logo{
    width: 100%;
    height: 10%;
    position:absolute;
    top: 20px;
}
.navbar{
    width: 100px;
    height: 100vh;
    background-color: black;
    position: fixed;
    top: 0px;
    left: 0px;
}

.navbar ul{
    list-style: none;
    width: 100%;
    height: 100%;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

.material-symbols-outlined{
    color: white;
    font-size: 30px !important;
}

.fa-solid{
    color: #fff;
    font-size: 20px;
}
.navbar li{
    
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.navbar li:hover{
    transform: scale(1.2);
}

.content-wrapper{
    flex: 1;
    margin-left: 100px;
}

.sec-ban{
    background: url(./Assets/moneyHeist.png) no-repeat left / cover;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content:end;
    gap: 20px;
    padding: 0px 20px 5px;
}

.flex-group{
    display: flex;
    align-items: center;
    gap: 10px;
}

.spacing-left{
    margin-left: 15px;
}

.rating-label{
    background-color: #e6ba00;
    color: #000;
    padding: 3px 2px;
    border-radius: 2px;
    height: 3vh;
    font-family: "Anton";
}

.text-white{
    color:#fff;
}

.bold-text{
    font-weight: bold;
    font-size: 18px;
}

.stream-count{
    color: #d40000;
}

.action-buttons{
    display: flex;
    gap: 20px;
}

.btn{
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease-in-out;
}

.btn-play{
    background-color: #d40000;
    padding: 12px 50px;
    color: #fff;
}

.btn-play:hover{
    background-color: #a00000;
}

.btn-trailer{
    background-color: #d9d9d9;
    padding: 12px 50px;
    color: #000;
}

.btn-trailer:hover{
    background-color: #b0b0b0;
}

.movie-section{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
}

.movie-container{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.movie{
    width: 140px;
    aspect-ratio: 2/3;
    border-radius:5px ;
}
.movie:hover{
    transform: scale(1.1);
}
footer{
    padding: 5px;
    text-align: center;
}


@media only screen and (min-width:300px) and (max-width:950px) {

    .sec-ban{
        display: none;
    }
    .logo{
        width: 100%;
        height: 10%;
        position:absolute;
        top: 5px;
    }
    .navbar{
        width: 50px;
        height: 510px;
        background-color: black;
        position: fixed; 
    }
   
    .fa-solid{
        color: #fff;
        font-size: 20px;
    }
    .movie-section{
        margin-left: -50px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 10px 10px;
    }
    .movie-container{
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
    }
    .movie{
        width: 140px;
        aspect-ratio: 2/3;
        border-radius:5px ;
    }
    .movie:hover{
        transform: scale(1.0);
    }
    .movie-container {
        overflow-x: scroll;
    }
    footer{
        display: flex;
        justify-content: center;
        align-items: center;
    }
}