/* =====================================================
   GOOGLE FONTS
===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600&display=swap');

/* =====================================================
   BASE BODY
===================================================== */
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #f8fafc;
    color: #1f2937;
    line-height: 1.7;
}

/* =====================================================
   CORE OJS LAYOUT (FIXED)
===================================================== */
.pkp_structure_content {
    display: flex;
    align-items: flex-start;
}

.pkp_structure_main {
    width: calc(100% - 320px);
    padding-right: 30px;
    box-sizing: border-box;
}

.pkp_structure_sidebar {
    width: 320px;
    margin-top: 0 !important;
}

/* Mobile */
@media (max-width: 991px) {
    .pkp_structure_content {
        flex-direction: column;
    }
    .pkp_structure_main,
    .pkp_structure_sidebar {
        width: 100%;
        padding-right: 0;
    }
}

/* =====================================================
   HEADER & NAVIGATION
===================================================== */
.pkp_structure_head {
    background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.pkp_site_name a {
    color: #ffffff !important;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
}

.pkp_navigation_primary a {
    color: #e0f2fe !important;
    font-weight: 500;
}

.pkp_navigation_primary a:hover {
    color: #ffffff !important;
}

/* =====================================================
   HOMEPAGE BANNER (SAFE)
===================================================== */
.pkp_page_index .homepage_image {
    width: 100%;
    margin: 0 0 25px 0;
    float: none !important;
    clear: both;
}

.pkp_page_index .homepage_image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* =====================================================
   IMAGE SAFETY
===================================================== */
.pkp_structure_main img {
    max-width: 100%;
    height: auto;
    float: none !important;
}

/* =====================================================
   TITLES & HEADINGS
===================================================== */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #0f172a;
}

h2 {
    font-size: 1.6rem;
    margin-top: 30px;
    border-left: 5px solid #3b82f6;
    padding-left: 12px;
}

h3 {
    font-size: 1.25rem;
    color: #1e40af;
}

/* =====================================================
   MAIN CONTENT CARD STYLE
===================================================== */
.pkp_structure_main > div,
.pkp_page_index .page_content {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

/* =====================================================
   SIDEBAR STYLE
===================================================== */
.pkp_structure_sidebar .block {
    background: linear-gradient(180deg, #ffffff, #f1f5f9);
    border-radius: 16px;
    padding: 18px 22px;
    margin-bottom: 25px;
    border: 1px solid #e5e7eb;
}

.pkp_structure_sidebar h2 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #475569;
    border: none;
    padding-left: 0;
}

/* =====================================================
   LINKS
===================================================== */
a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* =====================================================
   ARTICLE & ISSUE TITLES
===================================================== */
.obj_article_summary .title a,
.obj_issue_toc .heading {
    font-family: 'Playfair Display', serif;
    color: #0f172a;
}

.obj_article_summary .title a:hover {
    color: #2563eb;
}

/* =====================================================
   FOOTER
===================================================== */
.pkp_site_footer {
    background: #0f172a;
    color: #e5e7eb;
}

.pkp_site_footer a {
    color: #93c5fd;
}
/* ================= HEADER MENU VISIBILITY FIX ================= */

/* Menu bar background */
.pkp_navigation_primary_wrapper {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

/* Menu links */
.pkp_navigation_primary a {
    color: #0f172a !important;
    font-weight: 600;
}

.pkp_navigation_primary a:hover {
    color: #2563eb !important;
}

/* Active menu */
.pkp_navigation_primary .is_current a {
    color: #2563eb !important;
    border-bottom: 3px solid #2563eb;
}
