/* Minimal custom styling for McPherson Group website */

/* Header banner styling: white, light gray, and light blue */
.header-banner {
  background: linear-gradient(90deg, #ffffff 0%, #f5f6fa 50%, #e3f2fd 100%);
  color: #003366; /* dark blue for contrast */
  padding: 2rem 0;
  border-bottom: 1px solid #e3f2fd;
}

.quarto-title-block {
  display: none;
}

/* Example: If using a navbar as header banner */
.navbar {
  background: linear-gradient(90deg, #ffffff 0%, #f5f6fa 50%, #003366 100%);
  color: #003366;
  border-bottom: 1px solid #e3f2fd;
}

/* Make navbar-brand text visible on light background */
.navbar-brand {
  font-weight: bold;
  color: #003366 !important;
}
/* Make navbar right side icons (white) visible on mobile devices */
@media (max-width: 768px) {
  .navbar .nav-link,
  .navbar .navbar-brand,
  .navbar .navbar-toggler-icon,
  .navbar .bi {
    color: #003366 !important;
  }
}
/* Left-side nav links (dark navy) */
.navbar-nav.me-auto .nav-link {
  color: #003366 !important;  /* midnight blue */
}

/* Right-side nav links (white) */
.navbar-nav.ms-auto .nav-link {
  color: #ffffff !important;  /* white */
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Ensure good spacing for content */
.content {
  margin-top: 1rem;
}

/* Style for publication lists */
ol li {
  margin-bottom: 0.5rem;
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
}

/* Footer styling */
.footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
  color: #6c757d;
  font-size: 0.9rem;
}
