/* 1. Pengaturan Font Global (Kesan Akademik) */
body {
    font-family: 'Lora', Georgia, serif;
    color: #333;
    background-color: #fcfcfc;
}

/* 2. Header & Navigasi Bar (Biru Kebanggaan) */
.pkp_structure_head {
    background-color: #1E6292 !important; /* Biru Navy sesuai identitas */
    border-bottom: 4px solid #B38E5D; /* Garis Emas */
}

.pkp_navigation_primary a {
    color: #ffffff !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.pkp_navigation_primary a:hover {
    color: #B38E5D !important; /* Efek hover emas */
}

/* 3. Pengaturan Logo Agar Besar & Full (Responsive) */
.pkp_site_name .is_img img {
    max-height: 180px !important; /* Membuat logo lebih dominan */
    width: auto;
    display: block;
    margin: 10px auto;
    transition: transform 0.3s ease;
}

/* 4. Styling Judul Artikel & Sidebar */
h2, h3, .obj_article_summary .title a {
    color: #1E6292 !important;
    text-decoration: none;
}

.pkp_block .title {
    background-color: #1E6292;
    color: #fff !important;
    padding: 10px;
    border-radius: 4px 4px 0 0;
    border-bottom: 3px solid #B38E5D;
    font-size: 16px;
    text-transform: uppercase;
}

/* 5. Tombol Submission & Download (Emas & Biru) */
.pkp_button, .action_submit {
    background-color: #B38E5D !important;
    border: none !important;
    border-radius: 5px !important;
    font-weight: bold !important;
    padding: 12px 25px !important;
}

.pkp_button:hover {
    background-color: #1E6292 !important;
    color: #fff !important;
}

/* 6. Footer Styling */
.pkp_structure_footer {
    background-color: #1E6292 !important;
    color: #ffffff !important;
    border-top: 5px solid #B38E5D;
    padding: 40px 0;
}