/* ===== Full-Width Background Header with Overlay Text ===== */

/* Remove default logo image */
.pkp_site_name a.is_img,
.cmp_site_name a.is_img {
  display: none !important;
}

/* Force header full width */
.pkp_structure_head,
.pkp_structure_head .pkp_head_wrapper,
.pkp_structure_head .pkp_navigation_primary_wrapper {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

/* Apply your banner as background */
.pkp_site_name,
.cmp_site_name {
  position: relative;
  background: url("https://soreinstitutejournals.com/public/journals/1/pageHeaderLogoImage_id.png") center center / cover no-repeat !important;
  min-height: 280px;  /* Adjust height */
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff; /* default text color */
}

/* Overlay dark filter so text is readable */
.pkp_site_name::after,
.cmp_site_name::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 1;
}

/* Journal title */
.pkp_site_name h1,
.cmp_site_name h1 {
  position: relative;
  z-index: 2;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

/* Tagline/subtitle */
.pkp_site_name h2,
.cmp_site_name h2 {
  position: relative;
  z-index: 2;
  font-size: 18px;
  font-weight: 400;
  margin: 10px 0 0 0;
  font-style: italic;
}

/* Navigation bar styling */
.pkp_navigation_primary_wrapper {
  background-color: rgba(0, 0, 0, 0.75) !important;
  margin-top: 0 !important;
  padding: 12px 0 !important;
}

/* Navigation menu alignment */
.pkp_navigation_primary {
  display: flex !important;
  justify-content: center !important;
  gap: 30px;
}

.pkp_navigation_primary > li > a {
  color: #ffffff !important;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.3s;
}

.pkp_navigation_primary > li > a:hover {
  color: #ffd700 !important;
}

/* === Keep the login/user menu visible === */
.pkp_navigation_user_wrapper {
  display: block !important;
}
