/* DASAR & WARNA */
:root {
    --bg-dark: #0f172a;
    --card-bg: #1e293b;
    --cyan: #38bdf8;
    --gold: #fbbf24;
    --white: #ffffff;
    --silver: #94a3b8;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Inter', sans-serif; 
}

body { 
    background-color: var(--bg-dark); 
    color: var(--white); 
    overflow-x: hidden; 
}

.wrap { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 15px; 
}

/* HEADER */
.main-header { 
    background: rgba(15, 23, 42, 0.95); 
    padding: 10px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 1px solid #334155;
    backdrop-filter: blur(10px);
}

.header-flex { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 15px; 
}

/* LOGO FIX */
/* Container Logo tetap di tempat */
.brand-logo { 
    position: relative; 
    display: flex; 
    flex-direction: column; /* Mengatur arah susunan ke bawah */
    align-items: center; 
    width: 120px; 
    height: 50px; 
    text-decoration: none;
    justify-content: center;
}

/* Logo yang MENONJOL */
.main-logo-img { 
    position: absolute; 
    top: 3px; 
    left: 0;
    height: 40px; 
    width: auto; 
    z-index: 1001; 
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); 
    transition: transform 0.3s ease;
}

.main-logo-img:hover {
    transform: scale(1.1) rotate(-2deg); 
}

/* SLOGAN SAJA DI BAWAH LOGO */
.tagline {
    position: absolute;
    top: 45px; /* Menempatkan slogan tepat di bawah logo (karena logo height 40px) */
    left: 0;
    font-size: 8px; 
    color: #94a3b8; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
    white-space: nowrap; /* Agar tidak terpotong ke bawah */
    z-index: 1002;
    font-weight: 600;
}

/* Beri jarak pada Search Bar */
.search-bar { 
    margin-left: 20px; 
}

/* Penyesuaian Mobile */
@media (max-width: 768px) {
    .brand-logo { width: 80px; height: 40px; }
    .main-logo-img { 
        height: 35px; /* Sesuaikan ukuran di HP */
        top: 2px; 
    }
    .tagline {
        top: 38px;
        font-size: 7px;
    }
}

.logo-text { 
    display: flex; 
    flex-direction: column; 
    line-height: 1;
}


.tagline { 
    font-size: 9px; 
    color: var(--silver); 
    text-transform: uppercase; 
    letter-spacing: 1px;
    margin-top: 3px;
}

/* SEARCH BAR */
.search-bar { 
    flex: 1; 
    max-width: 400px; 
}

.search-bar input { 
    width: 100%; 
    padding: 10px 15px; 
    border-radius: 8px; 
    border: 1px solid #334155; 
    background: #1e293b; 
    color: white; 
    outline: none; 
}

.btn-login { 
    background: var(--cyan); 
    color: #000; 
    text-decoration: none; 
    padding: 8px 20px; 
    border-radius: 6px; 
    font-weight: bold; 
    font-size: 14px; 
    white-space: nowrap;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .header-flex { 
        flex-wrap: wrap; 
        justify-content: space-between; 
    }
    .search-bar { 
        order: 3; 
        max-width: 100%; 
        width: 100%; 
        margin-top: 10px;
    }
    .main-logo-img {
        height: 35px;
    }
    .main-title {
        font-size: 16px;
    }
}