*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#0f1115;
    color:#fff;
    overflow-x:hidden;
}

/* NAVBAR */

nav{
    width:100%;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;

    position:fixed;
    top:0;
    left:0;
    z-index:1000;

    background:rgba(0,0,0,0.4);
    backdrop-filter:blur(10px);
}

.logo{
    font-size:24px;
    font-weight:700;
    color:#f8d56b;
}

/* MENU */

nav ul{
    display:flex;
    gap:25px;
    list-style:none;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    transition:0.3s ease;
    font-size:15px;
}

nav ul li a:hover{
    color:#f8d56b;
}

/* HAMBURGER ICON */

.menu-toggle{
    display:none;

    width:45px;
    height:45px;

    border-radius:12px;
    background:#1b1f27;

    align-items:center;
    justify-content:center;

    font-size:20px;
    color:#fff;

    cursor:pointer;

    transition:0.3s ease;

    border:1px solid rgba(255,255,255,0.08);
}

.menu-toggle:hover{
    background:#f8d56b;
    color:#111;
}

/* HERO */

.hero{
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:120px 8% 80px;

    background:
    linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.8)),
    url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?q=80&w=1600&auto=format&fit=crop') center/cover;
}

.hero-content h1{
    font-size:58px;
    margin-bottom:15px;
}

.hero-content h1 span{
    color:#f8d56b;
}

.hero-content p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    color:#ddd;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;

    padding:14px 30px;

    background:#f8d56b;
    color:#111;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:0.3s ease;
}

.hero-btn:hover{
    transform:translateY(-3px);
}

/* SECTION */

section{
    padding:90px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    color:#f8d56b;
}

.section-title p{
    color:#bbb;
    margin-top:10px;
}

/* VIDEO GRID */

.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.video-card{
    background:#171a21;

    border-radius:18px;

    overflow:hidden;

    transition:0.3s ease;

    border:1px solid rgba(255,255,255,0.05);
}

.video-card:hover{
    transform:translateY(-8px);
}

.video-card iframe{
    width:100%;
    height:220px;
    border:none;
}

.video-info{
    padding:20px;
}

.video-info h3{
    margin-bottom:10px;
    font-size:20px;
}

.video-info p{
    color:#aaa;
    font-size:14px;
    line-height:1.7;
}

/* ABOUT */

.about{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:40px;
    align-items:center;
}

.about img{
    width:100%;
    border-radius:20px;
}

.about-text h2{
    color:#f8d56b;
    margin-bottom:20px;
    font-size:38px;
}

.about-text p{
    line-height:1.9;
    color:#ccc;
}

/* CONTACT */

.contact-box{
    text-align:center;

    background:#171a21;

    padding:50px 30px;

    border-radius:20px;
}

.contact-box h2{
    color:#f8d56b;
    margin-bottom:15px;
}

.contact-box p{
    color:#bbb;
    margin-bottom:30px;
}

/* SOCIAL ICONS */

.socials{
    display:flex;
    justify-content:center;
    align-items:center;

    gap:12px;

    flex-wrap:nowrap;
}

.social-icon{
    width:48px;
    height:48px;

    border-radius:50%;

    background:#222733;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:#fff;

    font-size:18px;

    transition:0.3s ease;

    border:1px solid rgba(255,255,255,0.08);
}

.social-icon:hover{
    background:#f8d56b;
    color:#111;

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(248,213,107,0.25);
}

/* FOOTER */

footer{
    text-align:center;

    padding:25px;

    color:#888;

    border-top:1px solid rgba(255,255,255,0.05);
}

/* FOOTER */

footer{
    text-align:center;

    padding:25px 15px;

    color:#888;

    border-top:1px solid rgba(255,255,255,0.05);

    background:#11151d;

    font-size:14px;

    letter-spacing:0.5px;
}

/* FOOTER CREDIT */

.footer-credit{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#f8d56b;
    opacity:0.75;
}

.dev-link {
    color:#f8d56b;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
}

.dev-link:hover{
    opacity:1;
    transform:translateY(-2px);
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

    nav{
        padding:18px 5%;
    }

    /* SHOW HAMBURGER */

    .menu-toggle{
        display:flex;
    }

    /* MOBILE MENU */

    nav ul{
        position:absolute;

        top:85px;
        left:50%;

        transform:translateX(-50%) translateY(-20px);

        width:90%;

        background:#11151d;

        flex-direction:column;

        text-align:center;

        padding:25px 0;

        gap:20px;

        border-radius:18px;

        border:1px solid rgba(255,255,255,0.05);

        box-shadow:0 10px 30px rgba(0,0,0,0.35);

        opacity:0;
        visibility:hidden;

        transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s;
    }

    nav ul.active{
        opacity:1;
        visibility:visible;

        transform:translateX(-50%) translateY(0);
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        font-size:15px;
    }

    .section-title h2{
        font-size:32px;
    }

    .about-text h2{
        font-size:30px;
    }

    .socials{
        gap:10px;
    }

    .social-icon{
        width:42px;
        height:42px;
        font-size:16px;
    }

}