
/* ===============================
   HERO BACKGROUND
   =============================== */
/* Apply hero background to homepage only */
body[data-md-page="index"] {
  background: url("../images/hero-bg.jpg") no-repeat center center fixed;
  background-size: cover;
}

/* Slight dark overlay for readability */
body[data-md-page="index"]::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: -1;
}

/* ===============================
   HEADER BRANDING
   =============================== */

/* Header background: clean white, subtle bottom shadow */
.md-header {
  background: #ffffff !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

/* “Powered by Optum” text */
.header-powered {
  font-size: 0.72rem;
  color: #c75b19; /* Optum orange */
  font-weight: 600;
  margin-left: 8px;
}

/* Logo alignment */
.md-header__title {
  display: flex;
  align-items: center;
}
.md-header__title img {
  height: 36px;   /* adjust as needed */
  margin-right: 8px;
}

/* ===============================
   HOMEPAGE CONTENT CARDS
   =============================== */

.home-cards {
  display: flex;
  gap: 2rem;
  max-width: 900px;
  margin: 4rem auto;
  justify-content: center;
}

.home-card {
  background: rgba(255,255,255,0.92);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  width: 280px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  backdrop-filter: blur(6px);
}

.home-card h3 {
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #003B71; /* UHC navy */
}

.home-card p {
  font-size: 0.85rem;
  color: #333;
}

/* ===============================
   PAGE TITLES (match screenshot)
   =============================== */
body[data-md-page="index"] h1 {
  text-align: center;
  color: #ffffff;
  margin-top: 4rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.45);
}
body[data-md-page="index"] h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.45);
}

/* ===============================
   FOOTER BRANDING
   =============================== */

.md-footer {
  background: #003B71 !important; /* UHC navy */
  color: #ffffff !important;
  padding: 1rem 0;
}

.md-footer__inner {
  color: #ffffff !important;
  font-size: 0.75rem;
  justify-content: center;
  text-align: center;
}

/* Light mode */
[data-md-color-scheme="default"] {
  --md-primary-fg-color: #002677;   /* your HEX color */
  --md-accent-fg-color: #E91E63;    /* accent HEX */
}

/* Dark mode */
[data-md-color-scheme="slate"] {
  --md-primary-fg-color: #002677;
  --md-accent-fg-color: #FF4081;
}

.md-grid {
    margin-left: auto;
    margin-right: auto;
    max-width: 68rem;
}

