* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;

    font-family: "Roboto", sans-serif;

    background: #151515;
    color: white;

    overflow-x: hidden;
}

img {
    max-width: 100%;
}



.navbar {
    width: 100%;

    background: #000;

    position: sticky;
    top: 0;

    z-index: 1000;
}

.navbar-container {
    width: 100%;

    min-height: 65px;

    padding: 0 50px;

    display: flex;
    align-items: center;

    color: white;

    font-family: "Sen", sans-serif;
}



.logo-container {
    flex: 0 0 auto;
}

.logo-container a {
    text-decoration: none;
}

.logo {
    color: #ff8c00;

    font-size: 30px;
    font-weight: 800;

    white-space: nowrap;
}



.menu-container {
    margin-left: 110px;
}

.menu-list {
    display: flex;

    align-items: center;

    gap: 35px;

    list-style: none;
}

.menu-list-item {
    margin: 0;
}

.menu-list-item a {
    color: white;

    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    letter-spacing: 1px;

    transition: color 0.3s ease;
}

.menu-list-item a:hover {
    color: #ff8c00;
}



.nav-menu-btn {
    display: none;

    color: white;

    font-size: 24px;

    cursor: pointer;
}



.container {
    width: 100%;

    min-height: calc(100vh - 65px);

    background: #151515;
}

.content-container {
    width: 100%;

    margin: 0;
}



.featured-content {
    width: 100%;

    min-height: 550px;

    padding: 60px;

    display: flex;

    align-items: flex-end;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.featured-inner {
    width: 100%;
    max-width: 650px;
}

.featured-title {
    color: white;

    font-family: "Sen", sans-serif;

    font-size: 42px;
    font-weight: 800;

    margin-bottom: 20px;
}

.featured-desc {
    width: 100%;

    color: #d0d0d0;

    font-size: 16px;

    line-height: 1.7;
}



.movie-list-container {
    width: 100%;

    padding: 35px 30px 15px;
}

.movie-list-title {
    color: white;

    font-family: "Sen", sans-serif;

    font-size: 28px;

    margin-bottom: 15px;
}


.movie-list-wrapper {
    width: 100%;

    position: relative;

    overflow: hidden;
}

.movie-list {
    width: max-content;

    display: flex;
    align-items: flex-start;

    gap: 25px;

    padding: 10px 5px 25px;

    transform: translateX(0);

    transition: transform 0.6s ease;
}

.movie-list-item {
    width: 270px;

    flex: 0 0 270px;

    position: relative;

    color: white;
}



.movie-list-item-img {
    width: 270px;
    height: 200px;

    display: block;

    object-fit: cover;

    border-radius: 15px;

    transition:
        transform 0.4s ease,
        opacity 0.4s ease;
}



.movie-list-item-title {
    display: block;

    margin-top: 12px;

    font-family: "Sen", sans-serif;

    font-size: 19px;

    font-weight: 700;

    color: white;
}


.movie-list-item-desc {
    display: block;

    margin-top: 5px;

    color: #aaa;

    font-size: 13px;

    line-height: 1.4;
}



@media (hover: hover) and (pointer: fine) {

    .movie-list-item:hover .movie-list-item-img {
        transform: scale(1.04);
        opacity: 0.75;
    }

    .movie-list-item:hover .movie-list-item-title {
        color: #ff8c00;
    }
}



.arrow {
    position: absolute;

    top: 80px;
    right: 10px;

    width: 55px;
    height: 55px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.7);

    color: #ff8c00;

    font-size: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 10;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.arrow:hover {
    background: #ff8c00;

    color: black;

    transform: scale(1.1);
}



.footer {
    width: 100%;

    padding: 25px 15px;

    background: #111;

    color: #999;

    text-align: center;

    font-size: 14px;
}



@media only screen and (max-width: 940px) {

    .navbar-container {
        padding: 0 30px;
    }

    .menu-container {
        margin-left: 60px;
    }

    .menu-list {
        gap: 25px;
    }

    .featured-content {
        min-height: 500px;

        padding: 45px;
    }

    .featured-title {
        font-size: 36px;
    }

    .featured-inner {
        max-width: 600px;
    }

    .movie-list-container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .movie-list-item,
    .movie-list-item-img {
        width: 230px;
    }

    .movie-list-item {
        flex: 0 0 230px;
    }

    .movie-list-item-img {
        height: 175px;
    }
}



@media only screen and (max-width: 600px) {

   

    .navbar-container {
        min-height: 65px;

        padding: 12px 18px;

        display: flex;

        flex-direction: row;

        justify-content: space-between;
    }

    .logo {
        font-size: 23px;
    }

    .nav-menu-btn {
        display: block;
    }

    .menu-container {
        position: absolute;

        top: 65px;
        left: 0;

        width: 100%;

        margin: 0;

        background: #000;

        display: none;
    }

    .menu-container.active {
        display: block;
    }

    .menu-list {
        width: 100%;

        padding: 15px 0 20px;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 20px;
    }

    .menu-list-item {
        width: 100%;

        text-align: center;
    }

    .menu-list-item a {
        display: block;

        width: 100%;

        padding: 8px;

        font-size: 15px;
    }



    .featured-content {
        min-height: 480px;

        padding: 25px 18px;

        align-items: flex-end;

        background-position: center;
    }

    .featured-inner {
        width: 100%;
    }

    .featured-title {
        font-size: 30px;

        margin-bottom: 12px;
    }

    .featured-desc {
        font-size: 14px;

        line-height: 1.6;
    }



    .movie-list-container {
        padding: 30px 0 10px;
    }

    .movie-list-title {
        padding: 0 18px;

        font-size: 23px;

        margin-bottom: 5px;
    }



    .movie-list-wrapper {
        overflow: hidden;
    }

    .movie-list {
        width: 100%;

        padding: 15px 18px 25px;

        gap: 15px;

        overflow-x: auto;
        overflow-y: hidden;

        transform: none !important;

        transition: none;

        scroll-behavior: smooth;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }

    .movie-list::-webkit-scrollbar {
        display: none;
    }



    .movie-list-item {
        width: 165px;
        min-width: 165px;

        flex: 0 0 165px;
    }

    .movie-list-item-img {
        width: 165px;
        height: 205px;

        border-radius: 13px;
    }

    .movie-list-item-title {
        margin-top: 9px;

        font-size: 16px;
    }

    .movie-list-item-desc {
        font-size: 12px;

        line-height: 1.4;
    }


    .arrow {
        display: none;
    }


    .footer {
        padding: 22px 15px;

        font-size: 13px;
    }
}


/* =========================
   SMALL PHONES
========================= */

@media only screen and (max-width: 380px) {

    .navbar-container {
        padding: 10px 15px;
    }

    .logo {
        font-size: 21px;
    }

    .featured-content {
        min-height: 430px;

        padding: 20px 15px;
    }

    .featured-title {
        font-size: 27px;
    }

    .featured-desc {
        font-size: 13px;

        line-height: 1.55;
    }

    .movie-list-title {
        font-size: 21px;

        padding-left: 15px;
    }

    .movie-list {
        padding-left: 15px;
        padding-right: 15px;
    }

    .movie-list-item {
        width: 145px;
        min-width: 145px;

        flex: 0 0 145px;
    }

    .movie-list-item-img {
        width: 145px;
        height: 180px;
    }
}