/*
 * YMCA of Greater Tulsa — hero-page.css
 * Shared page hero for: Standard Page, Board of Directors, Locations
 */

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  display: flex;
  align-items: center;
}
.page-hero.no-image {
  background: var(--green-xdk);
  min-height: 280px;
}
/* Hero video — same positioning as hero image */
.page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 26, 26, 0.92) 0%,
    rgba(26, 26, 26, 0.78) 50%,
    rgba(26, 26, 26, 0.45) 100%
  );
  z-index: 1;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--green) 0%,
    var(--teal) 50%,
    var(--blue) 100%
  );
  z-index: 3;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px var(--pad);
  max-width: 1200px;
  width: 100%;
}
.breadcrumb {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumb-sep {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
}
.page-title {
  font-family: "CachetPro", sans-serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.page-intro {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
}

@media (max-width: 767px) {
  .page-hero {
    min-height: 240px;
  }
  .page-title {
    font-size: 36px;
  }
  .page-intro {
    font-size: 15px;
  }
  .page-hero-content {
    padding: 32px var(--pad);
  }
}
