/* --- 1. FORCE TITLE VISIBILITY NEXT TO LOGO --- */
.pkp_site_name_wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

/* Ensure the text is visible even with a logo */
.pkp_site_name .is_text {
    display: inline-block !important;
    visibility: visible !important;
    color: #1a2b3c !important;
    /* Your Deep Navy */
    font-size: 1.8em !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

/* Add the abbreviation styling */
.pkp_site_name .is_text::after {
    content: " (NExAIE)";
    color: #b1976b !important;
    /* Your Nexus Gold */
    font-weight: 400;
    font-size: 0.7em;
}

/* --- 2. THE TOTAL WHITE HEADER TRANSFORMATION --- */

/* Turn the logo area, user bar (top), and nav bar (bottom) white */
.pkp_structure_head,
.pkp_navigation_user_wrapper,
.pkp_navigation_primary_row {
    background-color: #ffffff !important;
    border-bottom: 1px solid #f1f1f1 !important;
}

/* Fix Nav Link colors (Deep Navy) */
.pkp_navigation_primary>li>a,
.pkp_navigation_user>li>a,
.pkp_navigation_search a {
    color: #1a2b3c !important;
    font-weight: 500 !important;
}

/* Fix Hover colors (Nexus Gold) */
.pkp_navigation_primary>li>a:hover,
.pkp_navigation_user>li>a:hover {
    color: #b1976b !important;
}

/* Remove any remaining shadows/borders from the blue theme */
.pkp_navigation_primary_row {
    box-shadow: none !important;
}

.pkp_brand_footer {
    display: none !important;
}