/* ============================================================
   FILE: style.css - HOVER GOLD BACKGROUND VERSION
   ============================================================ */

/* --- 1. SETTING IDENTIK UNTUK HEADER & WRAPPER --- */
.homepage-issue-header, 
.page-issue-details,
.issue-wrapper,
.page-issue .issue-toc {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* --- 2. NAVIGASI (TETAP TERJAGA) --- */
.navbar { padding: 10px 0; margin-bottom: 15px; }
.navbar-logo-text { font-weight: 700; color: #1a233a; }
.nav-link {
    font-weight: 600; color: #555 !important;
    padding: 6px 18px !important; border-radius: 30px;
    transition: all 0.3s ease;
}
.nav-link:hover { background-color: #f0f4f8; color: #007bff !important; }

/* --- 3. FIX LOGO A IMG CENTER --- */
.homepage-issue-header .col-lg-3 { display: flex; justify-content: center; align-items: center; }
.homepage-issue-header .col-lg-3 a { display: flex; justify-content: center; width: 100%; }
.homepage-issue-cover, .page-issue-cover {
    max-width: 140px; height: auto; border-radius: 4px;
    margin: 10px auto; display: block;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.08));
}

/* --- 4. DAFTAR ARTIKEL (DENGAN HOVER EMAS) --- */
.article-summary {
    background: transparent;
    padding: 15px 15px; /* Tambah sedikit padding horizontal agar warna hover terlihat rapi */
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease; /* Transisi halus untuk semua perubahan */
}

.article-summary:last-child { border-bottom: none; }

/* EFEK HOVER: Background Emas & Border Emas */
.article-summary:hover {
    /* Warna emas transparan (lebih lembut daripada emas solid) */
    background-color: rgba(255, 215, 0, 0.07); 
    border-color: #FFD700; 
    cursor: pointer;
    border-radius: 8px; /* Memberi sudut membulat saat di-hover */
}

.article-summary-title a {
    font-size: 1.15rem; font-weight: 700; color: #1a233a;
    text-decoration: none; display: block; margin-bottom: 4px;
    transition: color 0.3s ease;
}

.article-summary:hover .article-summary-title a {
    color: #b8860b; /* Warna judul berubah jadi Dark Goldenrod saat di-hover */
}

.article-summary-authors { font-size: 0.85rem; color: #6b7280; margin-bottom: 10px; }

/* --- 5. TOMBOL PDF --- */
.article-summary-galleys .btn-primary {
    background-color: #1a233a; color: white !important;
    padding: 5px 20px; border-radius: 4px; font-weight: 700;
    text-transform: uppercase; font-size: 0.75rem; border: none;
}

/* --- 6. JUDUL HALAMAN & RESPONSIVE --- */
.page-content { width: 100%; margin-bottom: 25px; text-align: center; }
.site-about p {
    font-size: 1.3rem; font-weight: 700; color: #222;
    text-transform: uppercase; letter-spacing: 1px;
    position: relative; display: inline-block;
}
.site-about p::after {
    content: ""; width: 40px; height: 3px; background-color: #007bff;
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
}

@media (max-width: 991px) {
    .homepage-issue-header { flex-direction: column; text-align: center; }
    .homepage-issue-description-wrapper { padding-left: 0; margin-top: 15px; text-align: center; }
}