* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #111;

}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1;
    width: 100%;
}

.nav-container {
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
}

.logo {
    width: 150px;
    object-fit: contain;
}

.nav-user {
    width: 50px;
    object-fit: contain;
}

.banner {
    margin-top: -90px;
    background-image: url(https://wallpapers.com/images/featured/money-heist-segtwbhffwy01w82.jpg);
    background-size: cover;
    background-position: center;
    color: white;
    object-fit: contain;
    height: 480px;
}

.content {
    margin-left: 20px;
    padding-top: 240px;
    height: 200px;
}

.content h1 {
    font-size: 50px;
    font-weight: 600;
}

.buttns {
    margin-top: 10px;
}

.buttns button {
    cursor: pointer;
    color: #fff;
    outline: none;
    border: none;
    font-weight: 700;
    border-radius: 5px;
    padding: 15px 30px;
    margin: 0px 10px;
    background-color: #2a2929;
}

.buttns button:hover {
    color: #111;
    background-color: white;
    transition: 0.3s;
}

.description {
    line-height: 1.3;
    padding-top: 10px;
    max-width: 420px;
    height: 190px;
}


.posters {
    display: flex;
    overflow-y: hidden;
    overflow-x: scroll;
    padding: 20px;
    gap: 5px;
}

.posters::-webkit-scrollbar {
    display: none;
}


.poster-card {
    position: relative;
}

.poster-row {
    width: 200px;
    border-radius: 6px;
    transition: transform 0.35s ease;
}

.poster-card:hover .poster-row {
    transform: scale(1.25);
}

.row h2 {
    padding: 10px 20px;
    color: white;
}

.poster-row {
    width: 100%;
    object-fit: contain;
    max-height: 120px;
    transition: transform 0.3s;
}

.poster-row:hover {
    transform: scale(1.5);
}

.original-pos {
    max-height: 250px;
}

.footer {
    background-color: black;
    padding: 40px 80px;
    color: rgb(153, 153, 153);
}

.upper {
    text-align: center;
    margin-bottom: 40px;
}

.upper h4 {
    text-align: left;
}


.footer-info {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.upper button {
    padding: 12px 25px;
    font-size: 16px;
    background-color: rgb(229, 9, 20);
    border: none;
    color: white;
    border-radius: 4px;
    transition: 0.3s ease;
}

.upper button:hover {
    background-color: rgb(151, 2, 10);

}

.upper button a {
    text-decoration: none;
    color: white;
}

.upper input {
    width: 35%;
    padding: 12px 25px;
    font-size: 16px;
    background-color: #191818;
    border: none;
    border-radius: 4px;
}

.footer h4 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    color: white;
}

.footer-column {
    display: inline-block;
    width: 13%;
    vertical-align: top;
    margin-bottom: 30px;
}

.footer-column a {
    display: block;
    color: rgb(153, 153, 153);
    text-decoration: none;
    margin: 8px 0;
    font-size: 14px;
}

.lower {
    margin-top: 30px;
    text-align: left;
}

.footer-select {
    background-color: rgb(25, 24, 24);
    border: none;
    color: white;
    padding: 10px;
    border: none;
}


.lower h5 {
    margin: 15px 0;
    font-size: 16px;
    color: white;
}


/* ================= RESPONSIVE ================= */

/* ---- <= 1400px (Laptop) ---- */
@media (max-width: 1400px) {
    .content h1 {
        font-size: 44px;
    }

    .footer-column {
        width: 22%;
    }
}

/* ---- <= 959px (Tablet) ---- */
@media (max-width: 959px) {
    .banner {
        height: 55vh;
    }

    .content {
        padding-top: 20vh;
    }

    .content h1 {
        font-size: 36px;
    }

    .poster-row {
        width: 160px;
    }

    .poster-card:hover .poster-row {
        transform: scale(1.15);
    }

    .footer-info {
        flex-wrap: wrap;
    }

    .footer-column {
        width: 45%;
    }
}

/* ---- <= 480px (Mobile) ---- */
@media (max-width: 480px) {


    .banner {
        height: 50vh;
    }

    .content {
        
        padding-top: 20vh;
    }

    .upper {
        text-align: left;
    }

    .content h1 {
        font-size: 26px;
    }

    .description {
        font-size: 14px;
    }

    .buttns button {
        padding: 10px 18px;
        font-size: 14px;
        margin-bottom: 8px;
    }

    .poster-row {
        width: 130px;
    }

    .poster-card:hover .poster-row {
        transform: scale(1.08);
    }

    /* Netflix hides hover text on mobile */
    .poster-overlay {
        display: none;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer-column {
        width: 100%;
    }
}