/* ===========================
   9NAGA VLOG
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#111;
    color:#fff;
    font-family:'Poppins',sans-serif;
}

/* HEADER */

header{
    width:100%;
    height:75px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 50px;

    background:#1b1b1b;

    position:sticky;
    top:0;
    z-index:999;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:55px;
    height:55px;
    object-fit:contain;
}

.logo h2{
    color:#FFD700;
    font-size:28px;
}

nav{
    display:flex;
    gap:30px;
}

nav a{

    text-decoration:none;

    color:white;

    font-size:16px;

    transition:.3s;

}

nav a:hover{

    color:#FFD700;

}

/* HERO */

.hero{
    height: 420px;
    background-image: url("../img/banner/hero1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ligher{

    width:100%;
    height:100%;

    background:rgba(0,0,0,.65);

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding-left:70px;

}

.overlay h1{

    font-size:48px;

    margin-bottom:15px;

}

.overlay p{

    color:#ddd;

    margin-bottom:25px;

    font-size:18px;

}

#watchNow{

    width:190px;

    height:50px;

    border:none;

    border-radius:6px;

    background:#FFD700;

    color:#111;

    font-size:17px;

    font-weight:bold;

    cursor:pointer;

}

/* SEARCH */

.search-box{

    padding:35px 60px;

}

.search-box input{

    width:100%;

    height:50px;

    border:none;

    border-radius:6px;

    padding-left:18px;

    font-size:17px;

}

/* CONTENT */

.container{

    padding:0 60px 60px;

}

.container h2{

    margin-bottom:25px;

    color:#FFD700;

}

/* GRID */

.video-grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(240px,1fr));

    gap:25px;

}

/* CARD */

.card{

    background:#1d1d1d;

    border-radius:10px;

    overflow:hidden;

}

.card img{

    width:100%;

    height:320px;

    object-fit:cover;

}

.card-content{

    padding:15px;

}

.card h3{

    margin-bottom:8px;

    font-size:20px;

}

.category{

    color:#FFD700;

    font-size:14px;

    margin-bottom:15px;

}

.watch-btn{

    width:100%;

    height:45px;

    border:none;

    background:#FFD700;

    color:#111;

    font-weight:bold;

    cursor:pointer;

    border-radius:5px;

}

/* FOOTER */

footer{

    margin-top:70px;

    text-align:center;

    padding:30px;

    background:#1b1b1b;

}

/* RESPONSIVE */

@media(max-width:768px){

header{

    flex-direction:column;

    height:auto;

    padding:20px;

}

nav{

    margin-top:15px;

    gap:15px;

    flex-wrap:wrap;

    justify-content:center;

}

.overlay{

    padding:25px;

}

.overlay h1{

    font-size:32px;

}

.container{

    padding:25px;

}

.search-box{

    padding:25px;

}

}