/* * OJS 3 Manuscript Child Theme - JURNAL SERUMPUN (Orange Theme - V2)
 * Fokus Update:
 * 1. GOLD ACCENT: Mengubah aksen hitam di bawah menu dan atas footer menjadi Kuning Emas (#FFD700).
 * 2. REBRANDING: Warna Orange Jurnal Serumpun tetap dominan (#FF6600).
 * 3. MOBILE LAYOUT: Burger di KIRI, Logo di TENGAH, ISSN di KANAN.
 */

/* =========================================
   1. RESET & GLOBAL TYPOGRAPHY
   ========================================= */
body {
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #334155;
    line-height: 1.6;
    background-color: #ffffff !important; 
}

/* Judul Halaman Utama (About the Journal, Current, dll) */
.page_title, 
h1, 
.obj_article_details .title {
    color: #FF6600 !important; /* Warna Orange Utama */
    font-weight: 700;
}

a, a:visited { 
    color: #FF6600; 
    transition: color 0.2s ease-in-out; 
    text-decoration: none;
}

a:hover, a:focus {
    color: #cc5200; /* Orange lebih gelap saat hover */
}

/* =========================================
   2. HEADER & LOGO CONFIGURATION
   ========================================= */
.pkp_structure_head {
    background-color: #ffffff;
    border-bottom: none; 
    padding-top: 15px;
    padding-bottom: 5px;
}

.pkp_site_name_wrapper {
    padding: 10px 0;
    position: relative;
    display: flex !important;             
    flex-direction: row !important;
    align-items: center !important;      
    justify-content: space-between !important; 
    width: 100%;
    flex-wrap: nowrap !important;
}

.pkp_site_name {
    margin: 0 !important;
    flex: 0 1 auto !important;
}

.pkp_site_name img {
    display: block;
    max-height: 200px; 
    width: auto;
    max-width: 100%;
    transition: all 0.3s ease;
}

/* Styling ISSN Badge (Desktop) */
.pkp_structure_head .pkp_site_name_wrapper::after {
    content: "E-ISSN: 1234-5678  |  P-ISSN: 8765-4321" !important; 
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff !important;           
    background-color: #FF6600 !important; /* Background Orange */
    padding: 10px 20px;
    border-radius: 50px;
    white-space: pre; 
    box-shadow: 0 4px 6px rgba(255, 102, 0, 0.2); 
    margin-left: 20px;
    flex-shrink: 0;
}

/* =========================================
   3. NAVIGATION MENU (DESKTOP)
   ========================================= */
.pkp_navigation_primary_wrapper,
.pkp_navigation_primary_row {
    background-color: #FF6600 !important; /* Background Orange */
    border: none;
}

.pkp_navigation_primary_row {
    border-bottom: 5px solid #FFD700; /* UBAH KE KUNING EMAS */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pkp_navigation_primary > li > a {
    color: #ffffff !important;      
    font-weight: 600 !important;    
    padding: 18px 20px;             
}

.pkp_navigation_primary > li > a:hover {
    background-color: rgba(255, 255, 255, 0.2) !important; 
    color: #ffffff !important; 
}

/* Dropdown */
.pkp_navigation_primary li ul {
    background-color: #ffffff !important;
    border-top: 3px solid #FF6600 !important; 
}

.pkp_navigation_primary li ul li:hover {
    background-color: #fffaf5 !important; 
    border-left: 4px solid #FF6600 !important; 
}

/* Sembunyikan Tombol Burger secara default (Desktop) */
.pkp_site_nav_toggle {
    display: none !important;
}

/* =========================================
   4. FOOTER CUSTOMIZATION (JURNAL SERUMPUN)
   ========================================= */
.pkp_structure_footer_wrapper {
    background-color: #FF6600 !important; /* Background Orange */
    color: #ffffff !important; 
    padding: 40px 0 !important;
    border-top: 5px solid #FFD700 !important; /* UBAH KE KUNING EMAS */
}

/* Link di footer jadi putih */
.pkp_structure_footer a,
.pkp_structure_footer a:visited,
.pkp_footer_content a {
    color: #ffffff !important;
    text-decoration: underline;
    font-weight: 500;
}

.pkp_structure_footer a:hover,
.pkp_footer_content a:hover {
    color: #FFD700 !important; /* Hover ke warna Emas */
    text-decoration: none;
}

.pkp_footer_content {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.9rem;
}

/* =========================================
   5. RESPONSIVENESS (MOBILE FIX)
   ========================================= */
@media (max-width: 991px) {
    .pkp_navigation_primary_wrapper { 
        background-color: #FF6600 !important; 
    }
    
    .pkp_site_name_wrapper {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 5px 15px !important;
    }

    /* BURGER DI KIRI */
    .pkp_site_nav_toggle {
        display: block !important;
        order: 1 !important; 
        color: #FF6600 !important;
        border: 1px solid #FF6600 !important;
        background: transparent !important;
        border-radius: 4px;
        padding: 6px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    .pkp_site_nav_toggle span, 
    .pkp_site_nav_toggle:before, 
    .pkp_site_nav_toggle:after {
        background-color: #FF6600 !important;
    }

    /* LOGO DI TENGAH */
    .pkp_site_name {
        order: 2 !important; 
        margin: 0 auto !important; 
        text-align: center;
    }

    .pkp_site_name img { 
        max-height: 55px !important; 
        max-width: 120px !important; 
    }

    /* ISSN DI KANAN */
    .pkp_structure_head .pkp_site_name_wrapper::after {
        order: 3 !important; 
        content: "E-ISSN: 1234-5678 \A P-ISSN: 8765-4321" !important;
        font-size: 0.6rem !important;
        line-height: 1.1 !important;
        padding: 4px 8px !important;
        background-color: #FF6600 !important;
        box-shadow: none !important;
    }
}