/* ======================================================
   IJSAHM Professional Journal Styling
   ====================================================== */

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f7f9fc;
    color: #333;
    margin: 0;
    padding: 0;
}

/* ======================================================
   HEADER
   ====================================================== */

.pkp_structure_head {
    background: #0b3d91;
    color: white;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Keep journal title visible */
.pkp_site_name a {
    color: white !important;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
}

/* Hide only PKP/OJS branding images/icons */
img[alt*="Open Journal Systems"],
img[alt*="PKP"] {
    display: none !important;
}

/* Hide links leading to PKP */
a[href*="pkp.sfu.ca"] {
    display: none !important;
}

/* Navigation links */
.pkp_navigation_primary a {
    color: white !important;
    transition: 0.3s ease;
}

.pkp_navigation_primary a:hover {
    color: #dbe8ff !important;
}

/* ======================================================
   MAIN CONTENT AREA
   ====================================================== */

.pkp_structure_main {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* ======================================================
   SIDEBAR BLOCKS
   ====================================================== */

.pkp_block {
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    transition: 0.3s ease;
}

.pkp_block:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

/* ======================================================
   LINKS
   ====================================================== */

a {
    color: #0b3d91;
    text-decoration: none;
}

a:hover {
    color: #072d6b;
}

/* ======================================================
   BUTTONS
   ====================================================== */

button,
.pkp_button,
.cmp_button {
    background: #0b3d91 !important;
    color: white !important;
    border-radius: 5px;
    border: none;
    padding: 10px 16px;
    transition: 0.3s ease;
}

button:hover,
.pkp_button:hover,
.cmp_button:hover {
    background: #072d6b !important;
}

/* ======================================================
   FOOTER
   ====================================================== */

.pkp_structure_footer_wrapper {
    background: #ffffff;
    color: white;
    padding: 25px;
    margin-top: 40px;
}

/* Hide PKP footer branding */
.pkp_brand_footer {
    display: none !important;
}

/* ======================================================
   RESPONSIVE DESIGN
   ====================================================== */

@media screen and (max-width: 768px) {

    .pkp_structure_main {
        padding: 15px;
    }

    .pkp_block {
        padding: 12px;
    }

    .pkp_site_name a {
        font-size: 16px;
    }
}

/* ======================================================
   ENLARGE HEADER LOGO PROFESSIONALLY
   ====================================================== */

/* Increase overall header spacing */
.pkp_structure_head {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

/* Center logo properly */
.pkp_site_name {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Make logo much larger and visible */
.pkp_site_name .is_img img,
.pkp_site_name img {
    max-height: 260px !important;
    width: auto !important;
    max-width: 95% !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: contain !important;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {

    .pkp_site_name .is_img img,
    .pkp_site_name img {
        max-height: 140px !important;
    }

}

