/* ============================================================
   Mahaney Madness — Elite Camp shared shell
   Hero (full-bleed photo + overlaid nav + title), footer base.
   Modeled on the Payton Pritchard Foundation events hero.
   Per-page bottom-half styles live in each elite-camp-N.html.
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--ink); background: #fff; }
img { display: block; }

/* ── home-style nav, dark scheme (overlaid on hero) ── */
.ec-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 32px;
  background: rgba(8,11,20,0.74);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.ec-nav__logo {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: 1.5rem; letter-spacing: 0.05em; color: #fff; line-height: 2rem;
  text-decoration: none; white-space: nowrap;
}
.ec-nav__logo .accent { color: #6f9bff; }
.ec-nav__logo .sub {
  display: block; font-family: var(--font-body); font-weight: 400;
  font-size: 0.5rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.5);
  line-height: 2rem; margin-top: -4px;
}
.ec-nav__links {
  display: flex; align-items: center; gap: 24px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.ec-nav__links a {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.82);
  text-decoration: none; transition: color .2s;
  white-space: nowrap;
}
.ec-nav__links a:hover { color: #fff; }
.ec-nav__links a.is-current { color: #fff; border-bottom: 2px solid #6f9bff; padding-bottom: 3px; }
@media (max-width: 780px) { .ec-nav__links { gap: 16px; } }

/* ── hero ── */
.ec-hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.ec-hero__bg {
  position: absolute; inset: 0;
  background: url('../images/elite-camp-hero.jpeg') center 38% / 200% no-repeat;
  filter: saturate(0.55) brightness(0.62) contrast(1.06);
  z-index: 0;
}
.ec-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,12,22,0.55) 0%, rgba(8,12,22,0.18) 30%, rgba(8,12,22,0.35) 70%, rgba(8,12,22,0.72) 100%);
}
.ec-hero__inner { position: relative; z-index: 10; padding: 0 24px; }
.ec-hero__eyebrow {
  font-family: var(--font-body); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.42em; font-size: clamp(0.62rem, 1.3vw, 0.8rem);
  color: rgba(255,255,255,0.82); margin-bottom: 22px; text-indent: 0.42em;
}
.ec-hero__title {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.02em; line-height: 0.9; white-space: nowrap;
  font-size: clamp(3rem, 9vw, 7.5rem);
  color: #fff; text-shadow: 0 6px 40px rgba(0,0,0,0.5);
}
.ec-hero__sub {
  margin-top: 22px;
  font-family: var(--font-body); font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.34em; font-size: clamp(0.72rem, 1.6vw, 0.98rem);
  color: rgba(255,255,255,0.86); text-indent: 0.34em;
}
.ec-hero__rule {
  width: 64px; height: 3px; background: #fff; margin: 28px auto 0; opacity: 0.85;
}

@media (max-width: 640px) {
  .ec-nav__links { gap: 18px; }
  .ec-hero { min-height: 86vh; }
}
