/**
 * [2026-01-10] VERSION: 3.1.0 - CLEAN HEADER ONLY (NO TABS)
 */

/* ======================================================
   HEADER V2 - CLEAN FULLSCREEN (NO MAX-WIDTH / NO SHADOW)
   ====================================================== */

.header-v2 {
    /* Gradasi gelap transparan murni */
    background: linear-gradient(to bottom, 
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.6) 20%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.1) 80%,
            rgba(0, 0, 0, 0) 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: none;
    transition: all 0.3s ease;
}

/* Layout Per Baris */
.header-row {
    display: flex;
    align-items: center;
}

/* --- BARIS ATAS (Row Top) --- */
.row-top {
    padding: 15px;
    justify-content: space-between;
}

.header-col-left, 
.header-col-right {
    flex: 0 0 40px;
    display: flex;
    align-items: center;
}

.header-col-right {
    justify-content: flex-end;
}

.header-col-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Logo */
.site-logo img {
    width: 160px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.text-logo {
    color: #ffffff !important;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    letter-spacing: 0.5px;
}

/* Icon Buttons */
.mobile-menu-trigger, 
.search-trigger {
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff !important;
    padding: 5px;
    display: flex;
    align-items: center;
}

.header-v2 .material-icons-outlined {
    color: inherit;
    vertical-align: middle;
}