/* ===============================
   WAJCS CUSTOM STYLESHEET
   =============================== */

/* GENERAL TYPOGRAPHY */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.7;
    color: #222;
    background-color: #f9fbfd;
}

/* HEADINGS */
h1, h2, h3, h4 {
    font-weight: 600;
    color: #0b3d91;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
    border-bottom: 2px solid #e3ecff;
    padding-bottom: 5px;
}

/* LINKS */
a {
    color: #1e88e5;
    text-decoration: none;
}

a:hover {
    color: #0b3d91;
    text-decoration: underline;
}

/* HEADER / NAVIGATION */
.pkp_site_name a {
    font-weight: bold;
    font-size: 20px;
    color: #0b3d91 !important;
}

.pkp_navigation_primary > li > a {
    font-weight: 500;
    color: #333 !important;
}

.pkp_navigation_primary > li > a:hover {
    color: #1e88e5 !important;
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #0b3d91, #1e88e5);
    color: #fff;
    padding: 40px 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 25px;
}

.hero-section h1 {
    color: #fff;
}

.hero-section p {
    font-size: 18px;
}

/* CARDS */
.card {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
}

/* CALL TO ACTION */
.cta-box {
    background: #f4f8ff;
    padding: 20px;
    border-left: 5px solid #1e88e5;
    border-radius: 5px;
    margin: 30px 0;
}

/* BUTTONS */
.btn-primary {
    background: #1e88e5;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 500;
}

.btn-primary:hover {
    background: #0b3d91;
}

/* SIDEBAR */
.pkp_block {
    background: #ffffff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

/* CURRENT ISSUE */
.current_issue_title {
    color: #0b3d91;
    font-weight: bold;
}

/* FOOTER */
.pkp_structure_footer_wrapper {
    background: #0b3d91;
    color: #fff;
    padding: 20px;
}

.pkp_structure_footer_wrapper a {
    color: #ffffff;
}

.pkp_structure_footer_wrapper a:hover {
    text-decoration: underline;
}

/* FORMS */
input, textarea, select {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 8px;
}

button, input[type="submit"] {
    background: #1e88e5;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
}

button:hover, input[type="submit"]:hover {
    background: #0b3d91;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 20px;
    }

    .hero-section {
        padding: 25px 15px;
    }
}
/* ===============================
   HEADER CUSTOMIZATION (WAJCS)
   =============================== */

/* Header background */
.pkp_structure_head {
    background-color: #0b3d91 !important;
}

/* Journal title */
.pkp_site_name a {
    color: #ffffff !important;
}

/* Navigation menu links */
.pkp_navigation_primary > li > a {
    color: #ffffff !important;
}

/* Navigation hover */
.pkp_navigation_primary > li > a:hover {
    color: #cfe3ff !important;
}

/* User menu (login/register) */
.pkp_navigation_user > li > a {
    color: #ffffff !important;
}

/* Search icon */
.pkp_search button {
    color: #ffffff !important;
}
/* ===============================
   ARTICLE TITLE STYLING (UNIFIED)
   =============================== */

/* Article titles in issue listings */
.obj_article_summary .title a {
    font-size: 16px;
    font-weight: 400 !important; /* removes bold */
    color: #0b3d91;
}

/* Article titles on article page */
.obj_article_details .page_title {
    font-size: 26px;
    font-weight: 400 !important;
    color: #0b3d91;
}

/* Search results titles */
.search_results .title a {
    font-size: 20px;
    font-weight: 400 !important;
    color: #0b3d91;
}

/* Hover effect */
.obj_article_summary .title a:hover,
.search_results .title a:hover {
    color: #1e88e5;
    text-decoration: underline;
}
/* Improve spacing between articles */
.obj_article_summary {
    margin-bottom: 25px;
}

/* Add subtle separation */
.obj_article_summary {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
/* ===============================
   WAJAHS FOOTER FIX
   =============================== */

.wajahs-footer {
    text-align: center;
    color: #ffffff;
    padding: 10px 15px;   /* reduced height */
    line-height: 1.5;
    font-size: 14px;
}

.wajahs-footer p {
    margin: 5px 0;  /* reduces vertical spacing */
}

.footer-title {
    font-weight: 600;
    font-size: 15px;
}

.wajahs-footer a {
    color: #cfe3ff;
    text-decoration: none;
}

.wajahs-footer a:hover {
    text-decoration: underline;
}