/* =========================================================
   STYLE OJS 3 - AL-MUYASSAR (ELEGANT GOLD & ROYAL BLUE)
   lukman.my.id
   ig @lukmanizm
   ========================================================= */

/* 1. GLOBAL & TYPOGRAPHY */
body {
    font-family: 'Lora', Geneva, sans-serif !important;
    background-color: #f9f9f9;
}

.pkp_structure_page {
    background: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.pkp_structure_main a {
    color: #D4AF37; /* Elegant Gold */
    text-decoration: none;
    transition: 0.3s;
}

.pkp_structure_main a:hover {
    color: #002456; /* Royal Blue */
}

/* 2. HEADER & NAVIGATION MENU */
.pkp_navigation_primary_row {
    background: #002456 !important;
    border-top: 3px solid #D4AF37;
}

.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li a {
    color: #ffffff !important;
    font-weight: bold !important;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li a:hover {
    background: #D4AF37 !important;
    color: #002456 !important;
}

/* 3. HOMEPAGE LAYOUT (IMAGE KANAN, ABOUT KIRI) - FIXED */
.page_index_journal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

/* Memaksa elemen teks About ke urutan 1 (Kiri) */
.page_index_journal > .homepage_about {
    order: 1;
    width: 65%; /* Menyisakan ruang untuk gambar */
    text-align: justify;
    line-height: 1.7;
    margin-top: 0;
}

/* Memaksa elemen Gambar ke urutan 2 (Kanan) */
.page_index_journal > .homepage_image {
    order: 2;
    width: 32%;
    text-align: right;
    margin-top: 0;
}

.homepage_image img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border: 2px solid #F9F6E8;
    border-radius: 5px;
}

/* Elemen lain di homepage (Announcements, Issue) turun ke bawah */
.page_index_journal > .cmp_announcements,
.page_index_journal > .current_issue,
.page_index_journal > .additional_content {
    order: 3;
    width: 100%;
    margin-top: 30px;
}

.cmp_announcements.highlight_first {
    background-color: #F9F6E8; /* Soft Gold background */
    padding: 20px;
    border-left: 5px solid #D4AF37;
    border-radius: 4px;
}

/* 4. SIDEBAR MENU CUSTOM (KEPALA & BADAN) */
.pkp_structure_sidebar .kepala {
    background-color: #002456;
    color: #D4AF37; /* Teks Gold */
    padding: 12px 15px;
    font-weight: bold;
    border-bottom: 3px solid #D4AF37;
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 14px;
}

.pkp_structure_sidebar .badan {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: none;
    margin-bottom: 25px;
}

.pkp_structure_sidebar .badan a {
    display: block;
    padding: 10px 15px;
    color: #333333;
    text-decoration: none;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.3s ease;
}

.pkp_structure_sidebar .badan a:hover {
    background-color: #F9F6E8;
    color: #002456;
    padding-left: 20px; /* Efek geser kanan saat di-hover */
    border-left: 4px solid #D4AF37;
}

/* 5. DAFTAR ARTIKEL (TABLE OF CONTENT) */
.obj_article_summary {
    padding: 15px 20px;
    margin-bottom: 15px !important;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-left: 4px solid #002456; /* Garis biru di kiri */
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.obj_article_summary:hover {
    background: #F9F6E8; /* Berubah jadi soft gold saat di-hover */
    border-left: 4px solid #D4AF37;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.obj_article_summary .title a {
    font-size: 16px;
    color: #002456 !important;
    font-weight: bold;
}

.obj_galley_link {
    background: #002456 !important;
    color: #D4AF37 !important; /* Teks tombol PDF Gold */
    border: 1px solid #002456 !important;
    border-radius: 3px;
    padding: 5px 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.obj_galley_link:hover {
    background: #D4AF37 !important;
    color: #002456 !important;
    border: 1px solid #D4AF37 !important;
}

/* 6. FOOTER */
.pkp_structure_footer_wrapper {
    background: #002456;
    color: #ffffff;
    border-top: 5px solid #D4AF37;
}

.pkp_structure_footer_wrapper a {
    color: #D4AF37 !important;
}

.pkp_structure_footer_wrapper a:hover {
    color: #ffffff !important;
}

/* 7. RESPONSIVE MOBILE FIX */
@media (max-width: 768px) {
    /* Di layar HP, gambar cover pindah ke atas dan teks di bawahnya */
    .page_index_journal > .homepage_about {
        width: 100%;
        order: 2;
    }
    
    .page_index_journal > .homepage_image {
        width: 100%;
        order: 1;
        text-align: center;
        margin-bottom: 20px;
    }

    .homepage_image img {
        width: 250px;
    }
}