/* ========================================
   REHABME - PAGES.CSS
   Page-specific styles (Home / Services / etc.)
   ======================================== */

/* ========= HOME: HERO ========= */

.home-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  padding: 0;

  background:
    linear-gradient(
      180deg,
      rgba(10, 60, 120, 0.65) 0%,
      rgba(10, 60, 120, 0.30) 60%,
      rgba(10, 60, 120, 0.65) 100%
    ),
    url("../img/hero_home.jpg");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
}

.home-hero .container {
  width: 100%;
}

.home-hero-content {
  width: 100%;
  max-width: 720px;
}

.home-hero .pill {
  margin-bottom: var(--space-2);
}

.home-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

.home-hero p {
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: var(--space-4);
  max-width: 680px;
}

.home-hero .button-group .btn {
  padding: 12px 22px;
  font-size: 14px;
}

/* Secondary CTA on hero */
.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--color-white);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

@media (min-width: 1024px) {
  .home-hero {
    align-items: flex-end;
  }
}