:root {
    --red: #a00000;
    --dark: #222;
}

* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 200px;
    height: auto;
}

.brand {
    font-weight: 700;
    color: var(--red);
    font-size: 18px;
}

/* Desktop Nav */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-desktop a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

.btn-daftar {
    background: var(--red);
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-status {
    background: #e20000;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    margin-left : -20px;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--red);
    margin: 5px 0;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: #fff;
    padding: 80px 24px;
    transition: .3s ease;
    z-index: 1001;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.mobile-menu a {
    color: var(--dark);
    text-decoration: none;
    font-size: 16px;
}

.btn-daftar.mobile {
    text-align: center;
}


.btn-status.mobile {
    text-align: center;
    margin-left : 0px;
    margin-top : -15px
}

.mobile-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--dark);
    cursor: pointer;
    line-height: 1;
}


/* Overlay */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 1000;
}

/* Active */
.mobile-menu.active {
    right: 0;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: block;
    }
}
