/* =========================================
   GLOBAL RESET
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    scroll-behavior:smooth;
    overflow-x:hidden;
    background:#0a0f1c;
    font-family:sans-serif;
}


/* =========================================
   CUSTOM SCROLLBAR
========================================= */

::-webkit-scrollbar{
    width:6px;
}

::-webkit-scrollbar-track{
    background:#1e1e3a;
    border-radius:10px;
}

::-webkit-scrollbar-thumb{
    background:#ff5e7c;
    border-radius:10px;
}


/* =========================================
   VOLUME CONTROL
========================================= */

#volumeControl::-webkit-slider-runnable-track{
    height:2px;
    background:blue;
}

#volumeControl::-webkit-slider-thumb{
    background:red;
    -webkit-appearance:none;
    height:12px;
    width:12px;
    border-radius:50%;
    scroll-behavior:smooth;
    margin-top:-3px;
    border:1px solid #000000;
}


/* =========================================
   HINDI FILMS SECTION
========================================= */

#hindi-films{
    width:100%;
    min-height:100vh;
    background:#0a0f1c;
    padding:20px;
}


/* =========================================
   HERO SECTION
========================================= */

.hero{
    width:100%;
}

.section-title{
    color:#ffffff;
    text-align:center;
    padding:20px 10px;
    font-size:32px;
    letter-spacing:1px;
    text-shadow:2px 2px 5px #ff5e7c;
}


/* =========================================
   MOVIES GRID
========================================= */

.movies-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:25px;
    margin-top:25px;
}


/* =========================================
   MOVIE CARD
========================================= */

.film-card{
    background:#11161f;
    border-radius:18px;
    overflow:hidden;
    transition:0.3s ease;
    cursor:pointer;
    width:100%;
    border:1px solid rgba(255,255,255,0.1);
}

.film-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 20px rgba(255,94,124,0.6);
}


/* =========================================
   MOVIE IMAGE
========================================= */

.film-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
    background:#222;
}


/* =========================================
   MOVIE INFO
========================================= */

.movie-info{
    padding:16px;
}

.movie-info h2,
.movie-info h3{
    color:#ffffff;
    font-size:20px;
    margin-bottom:8px;
}

.movie-info p{
    color:#bdbdbd;
    font-size:15px;
    line-height:1.5;
}

.rating{
    color:#ffc107;
    margin-top:10px;
    font-size:16px;
}


/* =========================================
   TABLET RESPONSIVE
========================================= */

@media screen and (max-width:992px){

    #hindi-films{
        padding:18px;
    }

    .section-title{
        font-size:28px;
        padding:18px 10px;
    }

    .movies-grid{
        grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
        gap:20px;
    }

    .film-card img{
        height:270px;
    }

    .movie-info h2,
    .movie-info h3{
        font-size:18px;
    }

    .movie-info p{
        font-size:14px;
    }

}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media screen and (max-width:768px){

    #hindi-films{
        padding:15px;
    }

    .section-title{
        font-size:24px;
        line-height:1.5;
        padding:15px 8px;
    }

    .movies-grid{
        grid-template-columns:repeat(auto-fit, minmax(170px, 1fr));
        gap:18px;
    }

    .film-card{
        border-radius:15px;
    }

    .film-card img{
        height:240px;
    }

    .movie-info{
        padding:12px;
    }

    .movie-info h2,
    .movie-info h3{
        font-size:16px;
    }

    .movie-info p{
        font-size:13px;
    }

    .rating{
        font-size:14px;
    }

}


/* =========================================
   SMALL MOBILE DEVICES
========================================= */

@media screen and (max-width:480px){

    #hindi-films{
        padding:10px;
    }

    .section-title{
        font-size:20px;
        padding:12px 5px;
    }

    .movies-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .film-card{
        width:100%;
    }

    .film-card img{
        height:220px;
    }

    .movie-info{
        padding:10px;
    }

    .movie-info h2,
    .movie-info h3{
        font-size:15px;
    }

    .movie-info p{
        font-size:12px;
    }

    .rating{
        font-size:13px;
    }

}