/* =========================================================
   1. STYLING NAVIGATION BAR & MENU UTAMA
   ========================================================= */

/* Transisi halus dan spacing untuk menu utama */
.pkp_navigation_primary > li > a {
    font-weight: 600;
    color: #2d3748 !important;
    padding: 10px 16px !important;
    transition: all 0.25s ease-in-out;
    border-radius: 4px;
}

/* Hover pada menu utama (Header level 1) */
.pkp_navigation_primary > li > a:hover,
.pkp_navigation_primary > li > a:focus {
    color: #6495ed !important;
    background-color: #f7fafc;
}

/* Indicator panah dropdown */
.pkp_navigation_primary .has-submenu > a::after {
    border-top-color: #4a5568;
    transition: transform 0.2s ease;
}

.pkp_navigation_primary .has-submenu:hover > a::after {
    border-top-color: #6495ed;
}

/* =========================================================
   2. STYLING DROPDOWN MENU & HOVER STATE (#6495ed)
   ========================================================= */

/* Kontainer Dropdown Sub-menu */
.pkp_navigation_primary ul {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 6px !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05) !important;
    padding: 6px 0 !important;
    min-width: 210px !important;
    margin-top: 4px !important;
    overflow: hidden;
}

/* Item didalam Dropdown */
.pkp_navigation_primary ul li a {
    color: #334155 !important;
    padding: 10px 18px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    display: block;
}

/* HOVER STATE DROPDOWN (#6495ed) */
.pkp_navigation_primary ul li a:hover,
.pkp_navigation_primary ul li a:focus {
    background-color: #6495ed !important; /* Warna sesuai permintaan */
    color: #ffffff !important;            /* Teks putih agar mudah dibaca */
    padding-left: 22px !important;        /* Efek geser halus ke kanan */
    text-decoration: none !important;
}

/* =========================================================
   3. STYLING HOMEPAGE BANNER / HEADER IMAGE
   ========================================================= */

/* Bingkai Banner Gambar Homepage */
.page_index_journal .journal_description img,
.homepage-image img,
.pkp_site_name_wrapper img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efek Hover Halus pada Banner Gambar */
.page_index_journal .journal_description img:hover,
.homepage-image img:hover {
    box-shadow: 0 6px 20px rgba(100, 149, 237, 0.2) !important;
}

/* =========================================================
   4. STYLING DAFTAR ARTIKEL HALAMAN DEPAN (CORNFLOWER BLUE)
   ========================================================= */

/* Container Setiap Baris Artikel (Warna Dasar Abu-abu Muda) */
.obj_article_summary {
    background-color: #f8f9fa !important;
    border: 1px solid #e2e8f0 !important;
    border-left: 4px solid #6495ed !important; /* Aksen garis biru Cornflower di sebelah kiri */
    border-radius: 6px !important;
    padding: 16px 20px !important;
    margin-bottom: 14px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease-in-out;
}

/* Efek Hover Pada Baris Artikel */
.obj_article_summary:hover {
    background-color: #f1f5f9 !important;
    border-color: #cbd5e0 !important;
    border-left-color: #4169e1 !important;
    box-shadow: 0 4px 12px rgba(100, 149, 237, 0.12);
}

/* Judul Artikel (Warna Biru Cornflower) */
.obj_article_summary .title {
    margin-top: 0 !important;
    margin-bottom: 8px !important;
    font-size: 15.5px !important;
    line-height: 1.45 !important;
}

.obj_article_summary .title a {
    color: #2b6cb0 !important; /* Biru elegan kontras */
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.obj_article_summary .title a:hover {
    color: #6495ed !important; /* Biru Cornflower saat di-hover */
}

/* Penulis & Halaman Artikel */
.obj_article_summary .authors {
    color: #4a5568 !important;
    font-size: 13px !important;
    margin-bottom: 10px !important;
}

.obj_article_summary .pages {
    color: #718096 !important;
    font-size: 12.5px !important;
    font-weight: 600;
}

/* Tombol Unduh PDF */
.obj_article_summary .galleys {
    margin-top: 8px !important;
}

.obj_article_summary .galleys a.pdf {
    background-color: #ffffff !important;
    color: #2b6cb0 !important;
    border: 1px solid #6495ed !important;
    padding: 5px 12px !important;
    border-radius: 4px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.2s ease;
}

.obj_article_summary .galleys a.pdf:hover {
    background-color: #6495ed !important; /* Isian biru Cornflower saat hover */
    color: #ffffff !important;
    border-color: #6495ed !important;
}