/* =========================================
   1. MENYELARASKAN MENU NAVIGASI DENGAN BANNER BARU
   ========================================= */
/* Mengubah warna teks menu (Terkini, Arsip, dll) menjadi Cokelat Tua */
.pkp_navigation_primary a,
.header__top a,
.header__top {
    color: #4A2E1B !important;
    font-weight: bold !important;
}

/* Mengubah warna menu menjadi cokelat muda emas saat disorot mouse */
.pkp_navigation_primary a:hover,
.header__top a:hover {
    color: #D2B48C !important;
}

/* =========================================
   2. MEMAKSA FOOTER PRESISI DI TENGAH (TETAP DIJAGA)
   ========================================= */
.pkp_structure_footer {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding-bottom: 40px !important;
}

.pkp_footer_content {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 25px !important;
}

.pkp_brand_footer {
    width: auto !important;
    margin: 0 auto !important;
    float: none !important;
    display: block !important;
}

/* =========================================
   3. ATURAN MOBILE RESPONSIVE
   ========================================= */
@media screen and (max-width: 768px) {
    .pkp_navigation_primary {
        text-align: center !important;
        padding: 5px 0 !important;
    }
    .pkp_structure_footer {
        padding: 25px 15px !important;
    }
    .pkp_footer_content {
        flex-direction: column !important;
        align-items: center !important;
    }
}