/* Hamburger menu for mobile */
.pkp_site_nav_toggle,
.navbar-toggle {
  background-color: var(--primary);
  border: none;
  padding: 10px;
  margin: 10px;
  display: block;
  float: right;
}

.pkp_site_nav_toggle span,
.navbar-toggle .icon-bar {
  background-color: white;
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
}

/* Show navigation when hamburger is clicked */
.pkp_site_nav_toggle:focus + .pkp_head_wrapper .pkp_navigation_user_wrapper,
.pkp_site_nav_toggle:focus + .pkp_head_wrapper .pkp_navigation_primary_wrapper,
.navbar-toggle[aria-expanded="true"] + .navbar-collapse {
  display: block !important;
  visibility: visible !important;
}/* General Mobile Styles */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  
  .journal-title, 
  .site-name,
  .pkp_site_name {
    font-size: 1.75rem;
  }
  
  .navbar a,
  .pkp_navigation_primary > li > a {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.35rem; }
  
  .article-title {
    font-size: 1.2rem;
  }
  
  .sidebar {
    margin-top: 1.5rem;
  }
  
  .btn, .button {
    padding: 0.6rem 1rem;
  }
  
  .article-full-metadata {
    grid-template-columns: 1fr;
  }
}/* Additional font imports for Playfair Display */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');/* Footer Links - Enhanced visibility without background highlight */
.footer-content a,
.site-footer a,
.pkp_structure_footer a,
a[href^="mailto:"],
a[href*="creativecommons.org"] {
  color: var(--secondary) !important;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-content a:hover,
.site-footer a:hover,
.pkp_structure_footer a:hover,
a[href^="mailto:"]:hover,
a[href*="creativecommons.org"]:hover {
  color: white !important;
  text-decoration: underline;
}

/* Special styling for email links - extra bold */
a[href^="mailto:"] {
  font-weight: 900;
}/* Navigation Bar - Darker Gray Background */
.navbar,
.pkp_navigation_primary_wrapper,
#navigationPrimary,
.pkp_navigation_primary {
  background-color: #707070 !important;
  border-bottom: 1px solid #606060;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 0;
}/* Health Innovation Reports - Enhanced Professional Academic Journal Stylesheet */

/* Base Typography and Colors */
:root {
  --primary: #00305A;         /* Deep navy blue - main color */
  --primary-dark: #001F3F;    /* Darker blue for hover states */
  --secondary: #B07C1F;       /* Rich gold - more sophisticated than bright yellow */
  --accent: #E8F1F8;          /* Light blue accent */
  --text-dark: #333333;       /* Near-black for main text */
  --text-medium: #555555;     /* Dark gray for secondary text */
  --text-light: #777777;      /* Medium gray for tertiary text */
  --bg-light: #F5F7FA;        /* Very light blue-gray background */
  --bg-white: #FFFFFF;        /* White background */
  --nav-gray: #F0F0F0;        /* Light gray for navigation */
  --footer-gray: #F0F0F0;     /* Light gray for footer */
  --border-light: #E2E8F0;    /* Light gray borders */
  --success: #2E7D32;         /* Green for success messages */
  --warning: #F9A825;         /* Amber for warnings */
  --error: #C62828;           /* Red for errors */
}

body {
  font-family: 'Georgia', serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  background-color: var(--bg-white);
  margin: 0;
  padding: 0;
}

/* Typography Refinements */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Libre Baskerville', 'Georgia', serif;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  line-height: 1.3;
  color: var(--primary);
  font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1.5em;
  text-align: justify;
}

strong, b {
  font-weight: 700;
}

/* Journal Header - White Background, Blue Text with stronger contrast */
.site-header,
.pkp_structure_head {
  background-color: white;
  color: var(--primary);
  padding: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #e0e0e0;
}

/* Enhanced journal title - more academic and distinctive */
.journal-title, 
.site-name,
.pkp_site_name,
.pkp_site_name .is_text {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.05);
}

/* Make sure the site name link is visible */
.pkp_site_name a {
  color: var(--primary) !important;
  text-decoration: none !important;
}

.journal-subtitle,
.site-description {
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  color: var(--text-medium);
  font-style: italic;
  text-align: center;
  margin-top: 0.7rem;
  letter-spacing: 0.5px;
}

/* User Navigation Menu - Enhanced visibility */
.pkp_navigation_user_wrapper,
.pkp_navigation_user,
.navbar-right {
  background-color: var(--primary);
  padding: 5px 10px;
  border-radius: 4px;
}

.pkp_navigation_user > li > a,
.navbar-right > li > a {
  color: white !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
}

.pkp_navigation_user > li > a:hover,
.navbar-right > li > a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white !important;
  text-decoration: none;
}

/* For dropdown menus in user navigation */
.pkp_navigation_user .dropdown-menu,
.navbar-right .dropdown-menu {
  background-color: white;
  border: 1px solid #ddd;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.pkp_navigation_user .dropdown-menu a,
.navbar-right .dropdown-menu a {
  color: var(--text-dark) !important;
  padding: 8px 15px;
}

.pkp_navigation_user .dropdown-menu a:hover,
.navbar-right .dropdown-menu a:hover {
  background-color: var(--accent);
  color: var(--primary) !important;
}

.navbar a,
.pkp_navigation_primary > li > a {
  color: white !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  transition: all 0.3s ease;
}

.navbar a:hover,
.pkp_navigation_primary > li > a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: white !important;
  text-decoration: none;
}

.navbar .active,
.pkp_navigation_primary > .current {
  border-bottom: 3px solid var(--secondary);
}

/* Main Content Areas - White Background */
.main-content,
.pkp_structure_main,
.page_index_journal {
  background-color: var(--bg-white);
  padding: 2rem;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.page-header {
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

/* Journal Title Styling */
.journal-name,
.journal_name {
  font-family: 'Libre Baskerville', 'Georgia', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1rem;
}

/* Footer - Darker Gray Background */
#footer,
.site-footer,
.pkp_structure_footer_wrapper,
.pkp_structure_footer {
  background-color: #707070;
  color: white;
  padding: 3rem 0;
  margin-top: 3rem;
  border-top: 1px solid #606060;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-section h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.75rem;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.footer-menu a:hover {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Remove Open Journal Systems Hosting and Support Text */
#pkp-brand-footer,
.pkp_brand_footer,
.pkp_footer_content,
a[href="https://openjournalsystems.com"],
.site-footer p:last-child,
.footer-brand,
div:contains("Open Journal Systems Hosting and Support by: OpenJournalSystems.com") {
  display: none !important;
  visibility: hidden !important;
}

/* Journal-specific Components */
.issue-cover {
  border: 1px solid var(--border-light);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.journal-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 2rem;
  border-left: 4px solid var(--secondary);
  padding-left: 1.5rem;
}

/* Editorial Team Styling */
.editorial-team h3 {
  color: var(--primary);
  font-size: 24px;
  text-align: center;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.editorial-team p:has(strong) {
  background-color: #f5f7fa;
  padding: 10px;
  margin-top: 30px;
  margin-bottom: 20px;
  border-left: 5px solid var(--primary);
}

.editorial-team p:has(strong) strong {
  font-size: 18px;
  color: var(--primary);
}

.editorial-team p:has(img) {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.editorial-team img {
  border: 3px solid #f0f0f0;
  border-radius: 8px;
  margin-bottom: 15px;
}

.editorial-team p:has(img) strong {
  font-weight: 900 !important;
  font-size: 18px;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.editorial-team p:has(img) {
  line-height: 1.6;
}

/* Article Styles */
.article-summary {
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
  background-color: var(--bg-white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-summary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.article-authors {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 0.75rem;
}

.article-metadata {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.article-abstract {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
  text-align: justify;
}

.article-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
}

/* Buttons and Links */
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.btn,
.button {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  padding: 0.75rem 1.25rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.btn-primary,
.button.primary {
  background-color: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.btn-primary:hover,
.button.primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  text-decoration: none;
}

.btn-secondary,
.button.secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover,
.button.secondary:hover {
  background-color: var(--primary);
  color: white;
  text-decoration: none;
}

/* Tables */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5rem;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
}

thead {
  background-color: var(--primary);
  color: white;
}

th {
  text-align: left;
  padding: 1rem;
  font-weight: 600;
}

td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
}

tr:nth-child(even) {
  background-color: var(--accent);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .journal-title, 
  .site-name,
  .pkp_site_name {
    font-size: 2rem;
  }
  
  .journal-subtitle,
  .site-description {
    font-size: 1rem;
  }
  
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  
  .main-content {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  
  .journal-title, 
  .site-name,
  .pkp_site_name {
    font-size: 1.75rem;
  }
  
  .navbar a,
  .pkp_navigation_primary > li > a {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.35rem; }
  
  .article-title {
    font-size: 1.2rem;
  }
  
  .btn, .button {
    padding: 0.6rem 1rem;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 14px;
  }
  
  .journal-title, 
  .site-name,
  .pkp_site_name {
    font-size: 1.5rem;
  }
  
  .journal-subtitle,
  .site-description {
    font-size: 0.9rem;
  }
  
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.2rem; }
  
  .main-content {
    padding: 1rem;
  }
  
  .page-header {
    margin-bottom: 1.5rem;
  }
  
  .btn, .button {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .article-actions {
    flex-direction: column;
  }
}

/* Print Styles */
@media print {
  body {
    font-size: 12pt;
    line-height: 1.6;
    background: white;
    color: black;
  }
  
  .navbar, .sidebar, #footer, .article-actions {
    display: none !important;
  }
  
  a {
    color: #000000 !important;
    text-decoration: underline;
  }
  
  .article-main {
    font-size: 12pt;
    margin: 0;
    padding: 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    page-break-inside: avoid;
  }
  
  p {
    orphans: 3;
    widows: 3;
  }
  
  img, table, figure {
    page-break-inside: avoid;
    max-width: 100% !important;
  }
}
