/*=========================================
    NYOTA TV WEBSITE
==========================================*/

:root{

    --primary:#c40000;
    --secondary:#111111;
    --white:#ffffff;
    --light:#f5f5f5;
    --gray:#888;
    --shadow:0 10px 30px rgba(0,0,0,.18);
    --radius:14px;
    --transition:.4s ease;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    color:var(--secondary);
    background:#fff;
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;
    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:min(90%,1200px);
    margin:auto;

}

.section{

    padding:90px 0;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;
    color:var(--secondary);
    margin-bottom:15px;

}

.section-title p{

    color:#666;
    font-size:17px;

}

/*=========================================
            BUTTONS
==========================================*/

.btn{

    display:inline-block;
    padding:16px 36px;
    background:var(--primary);
    color:#fff;
    border-radius:40px;
    font-weight:600;
    transition:var(--transition);
    box-shadow:var(--shadow);

}

.btn:hover{

    transform:translateY(-4px);
    background:#980000;

}

.btn-outline{

    background:transparent;
    border:2px solid white;

}

.btn-outline:hover{

    background:white;
    color:var(--primary);

}

/*=========================================
            NAVIGATION
==========================================*/

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    transition:.4s;

}

header.scrolled{

    background:rgba(0,0,0,.95);
    backdrop-filter:blur(10px);
    box-shadow:0 5px 25px rgba(0,0,0,.25);

}

.nav-container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    height:85px;

}

/*=========================================
            LOGO
==========================================*/

.logo{

    display:flex;
    align-items:center;

}

.logo-img{

    height:70px;
    width:auto;
    display:block;
    transition:.3s ease;

}

.logo-img:hover{

    transform:scale(1.05);

}

nav ul{

    display:flex;
    gap:40px;

}

nav a{

    color:white;
    font-weight:500;
    transition:.3s;

}

nav a:hover{

    color:var(--primary);

}

#menu-btn{

    display:none;
    color:white;
    font-size:28px;
    cursor:pointer;

}

/*=========================================
                HERO
==========================================*/

.hero{

    position:relative;
    height:100vh;
    overflow:hidden;

}

.slider{

    position:absolute;
    width:100%;
    height:100%;

}

.slide{

    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1.2s ease;

    animation:zoom 12s linear infinite;

}

.slide.active{

    opacity:1;

}

@keyframes zoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.1);

    }

}

.overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.75)
    );

}

.hero-content{

    position:relative;
    z-index:5;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:flex-start;

    color:white;

}

.hero-content h1{

    font-size:78px;
    font-weight:800;
    line-height:1;

    margin-bottom:20px;

}

.hero-content p{

    font-size:20px;

    max-width:650px;

    margin-bottom:40px;

    line-height:1.8;

}

.hero-buttons{

    display:flex;

    gap:20px;

}
/*=========================================
            ABOUT SECTION
==========================================*/

.about{

    background:#fff;

}

.about-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.about-image{

    overflow:hidden;
    border-radius:var(--radius);
    box-shadow:var(--shadow);

}

.about-image img{

    transition:.6s;

}

.about-image:hover img{

    transform:scale(1.08);

}

.about-content h2{

    font-size:42px;
    margin-bottom:25px;
    color:var(--secondary);

}

.about-content p{

    color:#666;
    font-size:17px;
    line-height:1.9;
    margin-bottom:20px;

}

.about-content .btn{

    margin-top:15px;

}

/*=========================================
            WATCH SECTION
==========================================*/

.watch{

    background:#f8f8f8;

}

.watch-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.watch-card{

    background:#fff;
    border-radius:var(--radius);
    padding:45px 30px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:var(--transition);
    border-top:6px solid var(--primary);

}

.watch-card:hover{

    transform:translateY(-12px);

}

.watch-card h3{

    font-size:28px;
    margin-bottom:15px;

}

.watch-card span{

    color:#777;
    display:block;
    margin-bottom:12px;
    font-size:15px;

}

.watch-card h1{

    font-size:70px;
    color:var(--primary);
    line-height:1;

}
/*=========================================
            PROGRAMS
==========================================*/

.programs{

    background:#fff;

}

.programs-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;

}

.program-card{

    background:#fff;
    border-radius:14px;
    box-shadow:var(--shadow);
    overflow:hidden;
    border-top:6px solid var(--primary);
    transition:.35s ease;

}

.program-card:hover{

    transform:translateY(-10px);

}

.program-content{

    padding:35px;

}

.program-content h3{

    font-size:28px;
    margin-bottom:18px;
    color:var(--secondary);

}

.program-content p{

    color:#666;
    line-height:1.8;
    margin-bottom:28px;

}
/*=========================================
        PROGRAM SCHEDULE
==========================================*/

.program-schedule{

    display:flex;
    align-items:center;
    gap:10px;

    margin-bottom:25px;

    padding:12px 16px;

    background:#f8f8f8;

    border-left:4px solid var(--primary);

    border-radius:8px;

    color:#555;

    font-size:15px;

    font-weight:500;

}

.program-schedule i{

    color:var(--primary);

    font-size:18px;

}

/*=========================================
            GALLERY
==========================================*/

.gallery{

    background:white;

}

.gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:25px;

}

.gallery-grid img{

    width:100%;
    height:260px;
    object-fit:cover;

    border-radius:12px;

    transition:.5s;

    cursor:pointer;

    box-shadow:var(--shadow);

}

.gallery-grid img:hover{

    transform:scale(1.05);

}

/*=========================================
            CONTACT
==========================================*/

.contact{

    background:linear-gradient(
        135deg,
        #111,
        #1d1d1d
    );

    color:white;

}

.contact-box{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:50px;

}

.contact-box h2{

    font-size:42px;
    margin-bottom:20px;

}

.contact-box p{

    max-width:600px;

    line-height:1.9;

    margin-bottom:30px;

    color:#ddd;

}

.socials{

    display:flex;
    gap:18px;

}

.socials a{

    width:60px;
    height:60px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:22px;

    transition:.35s;

}

.socials a:hover{

    background:var(--primary);

    transform:translateY(-8px);

}

/*=========================================
            FOOTER
==========================================*/

footer{

    background:#000;
    color:white;

}

.footer-content{

    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:50px;

    padding:70px 0;

}

.footer-content h3{

    font-size:30px;
    margin-bottom:18px;

}

.footer-content h4{

    margin-bottom:18px;
    color:white;

}

.footer-content p{

    color:#bbb;
    line-height:2;

}

.footer-content a{

    transition:.3s;

}

.footer-content a:hover{

    color:var(--primary);

}

.copyright{

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    padding:25px;

    color:#999;

    font-size:15px;

}
/*=========================================
            ANIMATIONS
==========================================*/

.fade-up{

    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;
    transform:translateY(0);

}

.fade-left{

    opacity:0;
    transform:translateX(-60px);
    transition:all .8s ease;

}

.fade-left.show{

    opacity:1;
    transform:translateX(0);

}

.fade-right{

    opacity:0;
    transform:translateX(60px);
    transition:all .8s ease;

}

.fade-right.show{

    opacity:1;
    transform:translateX(0);

}

/*=========================================
            SCROLLBAR
==========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);
    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#960000;

}

/*=========================================
            IMAGE OVERLAY EFFECT
==========================================*/

.gallery-grid img{

    position:relative;

}

.gallery-grid img:hover{

    filter:brightness(.85);

}

/*=========================================
            SELECTION
==========================================*/

::selection{

    background:var(--primary);
    color:#fff;

}

/*=========================================
            TABLET
==========================================*/

@media(max-width:991px){

    .hero-content h1{

        font-size:58px;

    }

    .hero-content p{

        font-size:18px;

    }

    .about-grid{

        grid-template-columns:1fr;

    }

    .watch-grid{

        grid-template-columns:1fr;
        gap:25px;

    }

    .contact-box{

        flex-direction:column;
        text-align:center;

    }

    .socials{

        justify-content:center;

    }

}

/*=========================================
            MOBILE NAVIGATION
==========================================*/

@media(max-width:768px){

    /*=========================================
        FULL SCREEN MOBILE MENU
==========================================*/

    nav{

        position:fixed;

        top:0;
        left:0;

        width:100%;
        height:100vh;

        background:rgba(17,17,17,.98);

        backdrop-filter:blur(12px);

        display:flex;
        justify-content:center;
        align-items:center;

        transform:translateY(-100%);

        transition:.45s ease;

        z-index:998;

    }

    nav.active{

        transform:translateY(0);

    }

    nav ul{

        display:flex;
        flex-direction:column;
        align-items:center;
        gap:35px;

    }

    nav li{

        border:none;

    }

    nav a{

        font-size:28px;
        font-weight:600;
        color:#fff;

        transition:.3s;

    }

    nav a:hover{

        color:var(--primary);

    }

    #menu-btn{

        position:relative;

        z-index:999;

        display:block;

    }

}

/*=========================================
            SMALL PHONES
==========================================*/

@media(max-width:480px){

    .container{

        width:92%;

    }

    .logo{

        font-size:28px;

    }

    .hero-content h1{

        font-size:38px;

    }

    .hero-content p{

        font-size:16px;
        line-height:1.7;

    }

    .btn{

        padding:14px 28px;
        font-size:15px;

    }

    .section-title h2{

        font-size:30px;

    }

    .about-content h2{

        font-size:30px;

    }

    .contact-box h2{

        font-size:30px;

    }

    .watch-card{

        padding:35px 20px;

    }

    .watch-card h3{

        font-size:24px;

    }

    .watch-card h1{

        font-size:52px;

    }

    .socials{

        flex-wrap:wrap;

    }

    .socials a{

        width:52px;
        height:52px;

    }

}

@media(max-width:768px){

    .logo-img{

        height:58px;

    }

}

@media(max-width:480px){

    .logo-img{

        height:50px;

    }

}

/*=========================================
            UTILITIES
==========================================*/

.text-center{

    text-align:center;

}

.mt-1{

    margin-top:10px;

}

.mt-2{

    margin-top:20px;

}

.mt-3{

    margin-top:30px;

}

.mb-1{

    margin-bottom:10px;

}

.mb-2{

    margin-bottom:20px;

}

.mb-3{

    margin-bottom:30px;

}

/*=========================================
            SMOOTH HOVER EFFECTS
==========================================*/

img,
a,
button,
.watch-card,
.gallery-grid img,
.btn{

    transition:all .35s ease;

}

/*=========================================
            END OF FILE
==========================================*/