body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff;
}
body.menu-open {
    overflow: hidden;
}
a{
    color: goldenrod; text-decoration: none;
}
/* NAVBAR */
.navbar {position: sticky;
      top: 0;
    z-index: 10;
    background: #000;
    background: #000;
    border-bottom: 2px solid gold;
    padding: 10px 15px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
}
/* HEADER MENU */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #333;
}

/* LOGO DI MENU */
.menu-logo {
    height: 35px;
}

/* CLOSE BUTTON */
.close-btn {
    font-size: 24px;
    color: gold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: white;
}
/* HAMBURGER */
.hamburger {
    font-size: 26px;
    color: gold;
    cursor: pointer;
}
.side-menu::-webkit-scrollbar {
    width: 5px;
}

.side-menu::-webkit-scrollbar-thumb {
    background: gold;
    border-radius: 10px;
}
.side-menu {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    background: #000;
    transition: 0.3s;
    padding: 10px 10px 30px; /* tambah padding bawah */
    z-index: 999;

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    box-sizing: border-box; /* penting */
}

.side-menu a {
    display: block;
    padding: 15px;
    color: gold;
    text-decoration: none;
    border-bottom: 1px solid #333;
}

.side-menu a:hover {
    background: gold;
    color: black;
}


/* SOCIAL MEDIA ICON */
.social-icons a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    background: #111;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid gold;
    transition: 0.3s;
}

.social-icons a:hover {
    background: gold;
    color: black;
}

.icon {
    width: 20px;
    height: 20px;
}

.icon svg {
    width: 100%;
    height: 100%;
    fill: gold;
    transition: 0.3s;
}

.social-icons a:hover svg {
    fill: black;
}
/* BUTTON GOLD */
.btn-gold {
    background: gold;
    color: black !important;
    font-weight: bold;
    text-align: center;
    margin: 10px;
    border-radius: 5px;
}

/* ACTIVE MENU */
.side-menu.active {
    right: 0;
}

/* OVERLAY */
#overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    top: 0;
    left: 0;
    display: none;
    z-index: 998;
}

#overlay.active {
    display: block;
}

/* CONTENT */
.content {
    padding: 20px;
}

/* RESPONSIVE */
@media(min-width:768px) {
    .hamburger {
        font-size: 30px;
    }
}
/* RUNNING TEXT */
.running-text {
    background: #d4af37;
    border-bottom: 2px solid gold;
    overflow: hidden;
    white-space: nowrap;
}

.running-content {
    display: inline-block;
    padding: 8px 0;
    color: c9a227;
    font-weight: bold;
    animation: marquee 12s linear infinite;
}

/* ANIMASI */
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* CONTENT WRAPPER */
.content-box {
    padding: 20px;
    max-width: 1100px;
    margin: auto;
}

/* FLEX */
.content-flex {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* IMAGE */
.content-image img {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
}

/* TEXT */
.content-text {
    flex: 1;
    padding: 15px;
}

/* GROUP BUTTON */
.btn-group {
    display: flex;
    gap: 12px;
}

/* BASE BUTTON */
.btn {
    padding: 12px 22px; /* lebih lebar */
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
    text-align: center;
}

/* DAFTAR (GOLD) */
.btn.gold {
    background: gold;
    color: black;
}

.btn.gold:hover {
    background: #d4af37;
    color: #000;
}

/* LOGIN (MERAH) */
.btn.login {
    background: #c1121f;
    color: #fff;
}

.btn.login:hover {
    background: #ff2e2e;
    color: #fff;
}

/* RTP (OUTLINE) */
.btn.outline {
    border: 2px solid #b8961e;
    color: #b8961e;
}

.btn.outline:hover {
    background: #b8961e;
    color: #000;
}
/* DESC */
.content-desc {
    margin-top: 25px;
}

.content-desc h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.content-desc p {
    color: #444;
    line-height: 1.6;
}

/* MOBILE FIX */
@media(max-width:768px) {
    .content-flex {
        flex-direction: column;
    }

    .content-text {
        order: 1; /* teks di atas */
    }

    .content-image {
        order: 2; /* gambar di bawah */
        text-align: center;
        width: 100%;
    }

    .content-image img {
        width: 100%;
        max-width: 550px;
        height: auto;
    }
}
    .content-text {
        order: 1;
    }

   
    .btn-group {
        flex-direction: column; /* jadi ke bawah */
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;           /* full lebar */
        max-width: 300px;      /* biar gak kepanjangan */
        text-align: center;
    }
}