*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    background:#000;
    color:#fff;
}

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

/* GANTI GAMBAR DI SINI */
.hero-bg{
    position:absolute;
    inset:0;

    background-image:url('img/banner.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    z-index:1;
}

.overlay{
    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at center,
    rgba(0,0,0,.2),
    rgba(0,0,0,.8));

    z-index:2;
}

.hero-content{
    position:relative;
    z-index:3;

    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:20px;
}

.tag{
    color:#f7c72b;
    letter-spacing:5px;
    margin-bottom:25px;
    font-size:14px;
}

.hero h1{
    font-size:70px;
    line-height:1.1;
    font-weight:800;
}

.hero h1 span{
    color:#f7c72b;
}

.hero p{
    margin-top:25px;
    max-width:600px;
    font-size:20px;
    color:#ddd;
}

.hero-content{
    animation:heroMove 5s ease-in-out infinite;
}

@keyframes heroMove{
    0%,100%{
        transform:translateY(0);
        opacity:1;
    }

    50%{
        transform:translateY(-15px);
        opacity:.92;
    }
}
.btn-group{
    display:flex;
    gap:15px;
    margin-top:40px;
}

.btn{
    padding:15px 40px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
}

.primary{
    background:#f7c72b;
    color:#000;
}

.secondary{
    border:1px solid rgba(255,255,255,.3);
    color:#fff;
}

.scroll{
    margin-top:50px;
    letter-spacing:4px;
    font-size:12px;
    color:#999;
}

.bottom-bar{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;

    background:rgba(0,0,0,.85);

    display:flex;
    justify-content:center;
    gap:20px;

    padding:15px;

    z-index:999;
}

.bottom-bar a{
    text-decoration:none;
    color:#fff;
    padding:12px 30px;
    border-radius:8px;
    background:#f7c72b;
    color:#000;
    font-weight:700;
}

@media(max-width:768px){

.hero h1{
    font-size:42px;
}

.hero p{
    font-size:16px;
}

.btn-group{
    flex-direction:column;
}

}