/* ===== PREMIUM JOURNAL HEADER (ELSEVIER STYLE) ===== */

/* Remove all outer spacing */
html, body,
.pkp_structure_page {
    margin: 0 !important;
    padding: 0 !important;
}

/* ===== TOP HEADER (TITLE BAR) ===== */
.pkp_structure_head {
    background-color: #4b2e2b !important;
    border-bottom: none;
}

/* Title text */
.pkp_site_name a {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
}

/* ===== NAVIGATION STRIP ===== */
.pkp_navigation_primary_wrapper {
    background-color: #9d7525 !important;  /* premium beige */
    border-top: 1px solid #c49440;
    border-bottom: 1px solid #c6943d;
}

/* Navigation container alignment */
.pkp_navigation_primary_row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

/* Menu items */
.pkp_navigation_primary a {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.6px;
    position: relative;
    padding: 6px 10px;
}

/* ===== PREMIUM HOVER EFFECT (UNDERLINE STYLE) ===== */
.pkp_navigation_primary a::after {
    content: "";
    position: absolute;
    left: 10px;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #4b2e2b;
    transition: width 0.3s ease;
}

.pkp_navigation_primary a:hover::after {
    width: 70%;
}

/* Hover text color */
.pkp_navigation_primary a:hover {
    color: #4b2e2b !important;
}

/* Active menu */
.pkp_navigation_primary .current a::after {
    width: 70%;
}

/* ===== SEARCH ALIGNMENT ===== */
.pkp_navigation_search_wrapper {
    color: #ffffff;
    font-weight: 600;
}

/* ===== FIX FULL WIDTH (NO WHITE EDGES) ===== */
.pkp_structure_head,
.pkp_navigation_primary_wrapper {
    width: 100%;
}

/* Optional: subtle shadow for depth */
.pkp_navigation_primary_wrapper {
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
/* SEARCH text color */
.pkp_navigation_search_wrapper a,
.pkp_navigation_search_wrapper {
    color: #ffff !important;   /* dark brown (best match) */
    font-weight: 600;
}

/* Search icon color */
.pkp_navigation_search_wrapper:before,
.pkp_navigation_search_wrapper .fa {
    color: #2f1b19 !important;
}

/* Hover effect */
.pkp_navigation_search_wrapper:hover {
    color: #4b2e2b !important;
}
/* ===== HOMEPAGE COVER + ABOUT LAYOUT ===== */

.bsjmis-home {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin: 40px auto;
    max-width: 900px;
    padding: 0 20px;
}

/* Cover image */
.bsjmis-cover img {
    width: 260px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* About section */
.bsjmis-about {
    flex: 1;
}

.bsjmis-about h2 {
    color: #4b2e2b;
    margin-bottom: 10px;
}

.bsjmis-about p {
    font-size: 15px;
    line-height: 1.7;
    color: #2f1b19;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .bsjmis-home {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bsjmis-cover img {
        width: 200px;
    }
}
