/* ==========================================================================
   CSS CUSTOM DESAIN JALALAIN: JOURNAL OF QUR'AN AND HADITH
   Tema: Elegant Slate & Silver Grey (Soft Charcoal Edition)
   Disiapkan untuk: Ahmad Syauky
   ========================================================================== */

/* 1. IMPORT FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Lora:wght@400;700&display=swap');

/* =========================================
   A. LATAR BELAKANG SOFT GREY
   ========================================= */
body {
    background-color: #f1f3f5 !important; /* Abu-abu sangat muda */
    background-image: radial-gradient(rgba(108, 117, 125, 0.1) 1px, transparent 1px) !important;
    background-size: 20px 20px !important;
    background-attachment: fixed !important;
}

/* =========================================
   B. DESAIN HEADER & NAVIGASI (ABU-ABU ELEGAN)
   ========================================= */
.pkp_structure_head {
    border-bottom: 4px solid #495057; /* Abu-abu arang medium */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.pkp_navigation_primary_wrapper {
    display: flex;
    justify-content: flex-start !important;
    padding-left: 15px !important;
}

.pkp_navigation_primary > li > a {
    font-family: 'Inter', sans-serif !important;
    /* Gradient Abu-abu ke Slate */
    background: linear-gradient(180deg, #6c757d 0%, #495057 100%) !important; 
    color: #ffffff !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 0.75em !important;
    padding: 9px 16px !important; 
    margin: 12px 5px !important;
    display: inline-block !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    border-bottom: 2px solid #343a40;
}

.pkp_navigation_primary > li > a:hover {
    background: #adb5bd !important; /* Abu-abu lebih terang saat hover */
    color: #212529 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* =========================================
   C. SIDEBAR MENU UTAMA (STEEL GREY)
   ========================================= */
.pkp_block .title {
    background: transparent !important;
    color: #495057 !important;
    font-family: 'Inter', sans-serif !important;
    text-transform: uppercase;
    font-weight: 800 !important;
    text-align: left;
    font-size: 1.05em !important;
    border-bottom: 3px solid #dee2e6;
    margin-bottom: 20px !important;
    letter-spacing: 1px;
}

.pkp_block ul li a {
    font-family: 'Inter', sans-serif !important;
    background: #495057 !important; /* Abu-abu Arang */
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 12px 15px !important;
    display: block !important;
    text-decoration: none !important;
    border-bottom: 3px solid #343a40;
    border-radius: 5px;
    margin-bottom: 8px !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.pkp_block ul li a:hover {
    background: #6c757d !important;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* =========================================
   D. DESAIN DAFTAR ISI ARTIKEL (LEBIH SOFT)
   ========================================= */
.obj_article_summary {
    background: #ffffff !important;
    border: 1px solid #e9ecef !important;
    border-left: 6px solid #6c757d !important; /* Aksen abu-abu metalik */
    padding: 25px !important;
    margin-bottom: 25px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.obj_article_summary:hover {
    background: #f8f9fa !important;
    border-color: #adb5bd !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.obj_article_summary .title a {
    font-family: 'Inter', sans-serif !important;
    color: #343a40 !important;
    font-weight: 700 !important;
}

/* Tombol PDF Galley (Soft Grey) */
.galleys_links a.pdf {
    background: #6c757d !important;
    border-radius: 4px !important;
    padding: 6px 14px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    font-size: 0.8em !important;
    transition: all 0.2s ease;
}

.galleys_links a.pdf:hover {
    background: #495057 !important;
}

/* =========================================
   E. BLOK ABSTRAK & ARTIKEL
   ========================================= */
.obj_article_details .main_entry .title {
    font-family: 'Lora', serif;
    color: #212529 !important;
    border-bottom: 2px solid #dee2e6;
}

.obj_article_details .item.abstract {
    background: #ffffff !important;
    border: 1px solid #e9ecef !important;
    border-top: 5px solid #495057 !important; 
    padding: 30px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
}

.obj_article_details .item.abstract .heading {
    color: #495057 !important;
    border-bottom: 2px solid #adb5bd; 
}

/* Identitas Penulis (Light Silver) */
.obj_article_details .authors {
    background: #f8f9fa !important;
    border-left: 4px solid #adb5bd !important;
    color: #495057;
}

/* =========================================
   F. ANIMASI LOGO
   ========================================= */
.pkp_site_name .is_img img {
    animation: floatingLogo 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    max-height: 140px !important;
}

@keyframes floatingLogo {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}