/*
 * YMCA of Greater Tulsa — hero-branch.css
 * Branch/location CPT hero with info bar
 */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 10, 10, 0.9) 0%,
    rgba(10, 10, 10, 0.78) 45%,
    rgba(10, 10, 10, 0.35) 100%
  );
  z-index: 1;
}
.hero-accent {
  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;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 64px var(--pad);
  width: 100%;
}
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 22px;
}
.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.15s;
}
.hero-breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.hero-breadcrumb-sep {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.22);
}
.hero-title {
  font-family: "CachetPro", sans-serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.06;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(29, 158, 117, 0.8);
}
.hero-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 720px;
}
.hero-info-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(10, 10, 10, 0.55);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
  max-width: 680px;
}
.hero-info-item {
  padding: 16px 20px;
  border-right: 0.5px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}
.hero-info-item:last-child {
  border-right: none;
}
.hero-info-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 5px;
}
.hero-info-value {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin-bottom: 4px;
}
.hero-info-link {
  font-size: 13px;
  color: #5dcaa5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: color 0.15s;
  margin-top: auto;
  padding-top: 8px;
}
.hero-info-link:hover {
  color: #fff;
}

@media (max-width: 1024px) {
  .hero-info-bar {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .hero {
    min-height: 520px;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-tagline {
    font-size: 14px;
  }
  .hero-info-bar {
    grid-template-columns: 1fr;
    max-width: 100%;
    border-radius: 10px;
  }
  .hero-info-item {
    border-right: none;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  }
  .hero-info-item:last-child {
    border-bottom: none;
  }
}
