/* =========================================================
   HARIMAU TV
   Main Theme Style
   White + Golden Yellow
   ========================================================= */

:root {
    --harimau-yellow: #ffcc00;
    --harimau-yellow-dark: #e6b400;
    --harimau-black: #111111;
    --harimau-text: #333333;
    --harimau-gray: #777777;
    --harimau-light: #f7f8fa;
    --harimau-border: #e8e8e8;
    --harimau-white: #ffffff;
}

body {
    background: var(--harimau-white);
    color: var(--harimau-text);
}

/* =========================
   HEADER
   ========================= */

#hd.harimau-header {
    width: 100%;
    background: #ffffff;
    border: 0;
    position: relative;
    z-index: 1000;
}

.harimau-header-inner {
    width: calc(100% - 40px);
    max-width: 1280px;
    height: 104px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-sizing: border-box;
}

/* =========================
   LOGO
   ========================= */

.harimau-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none !important;
}

.harimau-brand-text {
    display: flex;
    align-items: baseline;
    line-height: 1;
    white-space: nowrap;
}

.harimau-brand-main {
    color: var(--harimau-black);
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -1.2px;
}

.harimau-brand-tv {
    color: var(--harimau-yellow-dark);
    font-size: 30px;
    font-weight: 900;
    margin-left: 6px;
    letter-spacing: -1px;
}

/* =========================
   DESKTOP NAVIGATION
   ========================= */

.harimau-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.harimau-nav ul {
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.harimau-nav li {
    padding: 0;
    margin: 0;
    position: relative;
}

.harimau-nav a {
    display: block;
    position: relative;
    padding: 39px 0 35px;
    color: var(--harimau-black) !important;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.harimau-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 24px;
    width: 0;
    height: 3px;
    background: var(--harimau-yellow);
    transform: translateX(-50%);
    border-radius: 2px;
    transition: width 0.2s ease;
}

.harimau-nav a:hover {
    color: var(--harimau-yellow-dark) !important;
}

.harimau-nav a:hover::after,
.harimau-nav a.active::after {
    width: 100%;
}

/* =========================
   RIGHT BUTTON
   ========================= */

.harimau-menu-button {
    width: 46px;
    height: 46px;
    border: 1px solid var(--harimau-border);
    border-radius: 50%;
    background: #ffffff;
    color: var(--harimau-black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.harimau-menu-button:hover {
    background: var(--harimau-yellow);
    border-color: var(--harimau-yellow);
    transform: translateY(-1px);
}

/* =========================
   SIGNATURE LINE
   ========================= */

.harimau-yellow-line {
    width: 100%;
    height: 5px;
    background: var(--harimau-yellow);
}

/* =========================
   MOBILE MENU
   ========================= */

.harimau-mobile-menu {
    display: none;
    background: #ffffff;
    border-top: 1px solid var(--harimau-border);
}

.harimau-mobile-menu.open {
    display: block;
}

.harimau-mobile-menu-inner {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 8px 0 18px;
}

.harimau-mobile-menu a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid #eeeeee;
    color: var(--harimau-black) !important;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
}

.harimau-mobile-menu a:hover {
    color: var(--harimau-yellow-dark) !important;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 1100px) {

    .harimau-header-inner {
        gap: 24px;
    }

    .harimau-nav ul {
        gap: 22px;
    }

    .harimau-nav a {
        font-size: 14px;
    }

    .harimau-brand-main,
    .harimau-brand-tv {
        font-size: 27px;
    }
}

/* =========================
   MOBILE / RESPONSIVE
   ========================= */

@media (max-width: 820px) {

    .harimau-header-inner {
        width: calc(100% - 30px);
        height: 76px;
        gap: 15px;
    }

    .harimau-brand-main,
    .harimau-brand-tv {
        font-size: 23px;
    }

    .harimau-brand-tv {
        margin-left: 4px;
    }

    .harimau-nav {
        display: none;
    }

    .harimau-menu-button {
        width: 42px;
        height: 42px;
        font-size: 20px;
        margin-left: auto;
    }

    .harimau-yellow-line {
        height: 4px;
    }
}

/* ========================================
   HARIMAU TV LOGO
======================================== */

.harimau-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.harimau-logo {
    display: block;
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
}

.harimau-brand-text {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

@media (max-width: 820px) {
    .harimau-logo {
        width: 44px;
        height: 44px;
    }
}

/* write-test */
