/* ========================================= */
/* --- 1. WARNA KONSISTEN BIRU TUA & PUTIH --- */
/* ========================================= */

/* WARNA KONSISTEN: #003366 (Biru Tua) dan #002244 (Biru Gelap Footer) */

/* HEADER & NAVBAR */
.navbar-default,
#headerNavigationContainer {
    background-color: #003366 !important;
    border-color: #002244 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Teks Header Putih */
.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-brand {
    color: #ffffff !important; 
}

/* FOOTER (Biru Tua Paling Gelap & Teks Putih) */
.pkp_structure_footer_wrapper,
.footer {
    background-color: #002244 !important; 
    border-top: 1px solid #003366 !important; 
    color: #ffffff !important; 
}

/* Memastikan semua teks dan link di footer putih */
.footer_col, .footer_col p, .footer_col span, .footer_col h3, .footer_col strong, 
.footer .col-md-12, .footer .container, .footer a, .footer a:hover {
    color: #ffffff !important; 
}

/* JUDUL SIDEBAR (Stripe Menu Biru Tua dengan Teks Putih) */
.pkp_structure_sidebar .block_custom .title,
.pkp_structure_sidebar .pkp_block h2 {
    background-color: #003366 !important; /* Biru Tua */
    color: #ffffff !important; /* Teks judul putih */
    border: none !important;
    margin-bottom: 0;
    padding: 10px 15px;
    font-size: 1.1em !important; /* Ukuran teks lebih kecil (dari pengaturan Anda) */
}

/* ========================================= */
/* --- 2. STRUKTUR & UKURAN TEKS --- */
/* ========================================= */

/* FULL WIDTH */
.pkp_structure_content,
.pkp_structure_head .container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 30px;
    padding-right: 30px;
}

/* PERSEMPIT SIDEBAR (RASIO 10/2) */
@media (min-width: 768px) {
    /* Main Content 10 kolom */
    .pkp_structure_content .pkp_structure_main {
        width: 72% !important; 
        float: left !important;
        margin-left: 0 !important;
        padding-right: 15px !important;
    }

    /* Sidebar 2 kolom */
    .pkp_structure_content .pkp_structure_sidebar {
        width: 28% !important; 
        float: right !important;
        padding-left: 15px !important;
    }
}

/* UKURAN TEKS KESELURUHAN */
body {
    font-size: 15px !important;
    line-height: 1.6 !important; 
}
.navbar-default .navbar-nav > li > a {
    font-size: 1.05em !important;
}

/* ========================================= */
/* --- 3. KONTROL LAINNYA --- */
/* ========================================= */
.btn-primary, .btn-primary:hover, .btn-primary:focus {
    background-color: #003366 !important; 
    border-color: #003366 !important;
}

/* ========================================= */
/* --- PERBAIKAN BACKGROUND IMAGE HEADER --- */
/* ========================================= */

/* Targetkan elemen header utama dengan spesifisitas sangat tinggi */
#headerNavigationContainer.navbar.navbar-default {
    /* GANTI INI DENGAN URL GAMBAR YANG SUDAH TERVERIFIKASI DI LANGKAH 1 */
    background-image: url('URL_GAMBAR_ANDA') !important; 
    
    /* Pastikan warna biru tua tidak menimpa gambar */
    background-color: #003366 !important; 
    
    /* Pengaturan tampilan gambar */
    background-repeat: no-repeat !important; 
    background-size: cover !important; 
    background-position: center center !important; 
    
    /* Set tinggi agar gambar terlihat */
    height: 200px !important; 
    min-height: 150px !important; 
}

/* Memastikan konten (teks, logo) header transparan di atas gambar */
.pkp_structure_head .container-fluid,
.navbar-header,
#nav-menu {
    background: transparent !important;
}

/* Memastikan teks tetap terlihat putih di atas background gelap */
.navbar-default .navbar-brand,
.navbar-default .navbar-nav > li > a {
    color: #ffffff !important; 
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5); 
}