
/* ======================================================
   ADVEX Publications - Site Branding CSS
   Purpose: Minimal, safe branding for OJS (site-level)
   Colors:
     Navy: #0B2E5F
     Gold: #C9A13A
   ====================================================== */

/* Global typography and links */
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Buttons */
.btn,
button,
input[type="submit"],
input[type="button"] {
  border-radius: 8px;
}

/* Header background (common OJS themes) */
.pkp_structure_head,
.pkp_site_name_wrapper,
.pkp_navigation_primary_wrapper {
  background-color: #0B2E5F;
}

/* Header text and links */
.pkp_site_name a,
.pkp_navigation_primary a,
.pkp_navigation_user a {
  color: #ffffff !important;
}

/* Active / hover navigation */
.pkp_navigation_primary a:hover,
.pkp_navigation_primary .is_current a {
  color: #C9A13A !important;
}

/* Primary action buttons */
.pkp_button_primary,
.pkp_button_primary:hover {
  background-color: #C9A13A;
  border-color: #C9A13A;
  color: #0B2E5F;
}

/* Secondary buttons */
.pkp_button,
.pkp_button:hover {
  border-radius: 8px;
}

/* Footer styling */
.pkp_structure_footer {
  background-color: #0B2E5F;
  color: #ffffff;
}

.pkp_structure_footer a {
  color: #C9A13A !important;
}

/* Sidebar blocks */
.pkp_block {
  border-radius: 6px;
}

/* Article titles */
.obj_article_summary .title a,
.obj_article_details .title {
  color: #0B2E5F;
}

/* Section headers */
h1, h2, h3, h4 {
  color: #0B2E5F;
}
