/* ═══════════════════════════════════════════
   ALASKA EXPOSURE — EVENT PAGE CSS
   Prospect Athletics Foundation
   Last updated: March 2026
═══════════════════════════════════════════ */

@font-face {
  font-family: 'Abolition-Oblique';
  src: url('/assets/fonts/Abolition-Oblique.woff2') format('woff2'),
       url('/assets/fonts/Abolition-Oblique.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── DESIGN TOKENS ── */
:root {
  --pa-gold:        #d4af37;
  --ae-bg:          #0f0e0a;
  --ae-bg-alt:      #141210;
  --ae-gold:        var(--color-accent-gold, #F5A623);
  --ae-teal:        var(--color-accent-teal, #4ECDC4);
  --ae-purple:      #7C3FC4;
  --ae-text:        var(--color-text-primary, rgba(255,255,255,0.92));
  --ae-text-mid:    var(--color-text-secondary, rgba(255,255,255,0.60));
  --ae-text-muted:  var(--color-text-muted, rgba(255,255,255,0.35));
  --ae-border:      var(--color-border, rgba(245,166,35,0.14));
  --ae-border-hi:   var(--color-border-strong, rgba(245,166,35,0.25));
  --ae-shadow:      var(--color-shadow, rgba(0,0,0,0.4));
  --ae-r:           12px;
  --ae-ease:        cubic-bezier(0.2,0,0,1);
  --ae-transition:  0.3s var(--ae-ease);
}


/* ── BASE ── */
.ae-page {
  background: #0f0e0a;
  color: var(--ae-text);
  font-family: 'Objective', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.ae-page *, .ae-page *::before, .ae-page *::after {
  box-sizing: border-box;
}

.ae-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.ae-section {
  padding: 80px 0;
}

html .ae-page .ae-section-title {
  font-family: 'Abolition-Oblique', sans-serif !important;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--ae-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 48px;
}


/* ═══════════════════════════════════
   1. HERO
═══════════════════════════════════ */
.ae-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 50px;
  background: #0f0e0a;
  background-image:
    radial-gradient(ellipse 600px 500px at 50% 30%,
      rgba(124,63,196,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 50% 20%,
      rgba(245,166,35,0.06) 0%, transparent 60%);
  position: relative;
}

.ae-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

/* Logo — circular treatment */
.ae-hero-logo {
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ae-logo-circular {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid var(--ae-gold);
  box-shadow:
    0 0 40px rgba(245,166,35,0.35),
    0 0 80px rgba(245,166,35,0.15),
    0 0 120px rgba(124,63,196,0.12);
  overflow: hidden;
  padding: 0;
}

.ae-logo-circular img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transform: scale(1.5);
}

/* Logo — square treatment */
.ae-logo-square {
  width: 200px;
  height: auto;
}

.ae-logo-square img {
  width: 100%;
  height: auto;
  border-radius: var(--ae-r);
}

html .ae-page .ae-hero-title {
  font-family: 'Abolition-Oblique', sans-serif !important;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  color: var(--ae-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin: 0 0 8px;
}

.ae-hero-eyebrow {
  font-family: 'Objective', sans-serif;
  font-weight: 600;
  font-size: clamp(0.65rem, 1.2vw, 0.8rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ae-gold);
  opacity: 0.85;
  margin: 0 0 10px;
}

.ae-hero-scholarship {
  font-family: 'Objective', sans-serif;
  font-weight: 600;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: rgba(255,255,255,0.75);
  text-align: center;
  max-width: 560px;
  margin: 14px auto 0;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

html .ae-page .ae-quote-band-text {
  font-family: 'Abolition-Oblique', sans-serif !important;
}

html .ae-page .ae-register-title {
  font-family: 'Abolition-Oblique', sans-serif !important;
}

html .ae-page .ae-about-name {
  font-family: 'Abolition-Oblique', sans-serif !important;
}

html .ae-page .ae-cd-num {
  font-family: 'Abolition-Oblique', sans-serif !important;
}

.ae-hero-sub {
  display: none !important;
}

/* Details bar */
.ae-hero-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-bottom: 40px;
}

.ae-detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ae-text-mid);
  letter-spacing: 0.06em;
}

.ae-detail svg {
  stroke: var(--ae-gold);
  flex-shrink: 0;
}

.ae-detail-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.80);
  font-family: 'Objective', sans-serif;
  font-size: clamp(0.8rem, 1.4vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.ae-detail-icon {
  font-size: 0.85em;
  opacity: 0.7;
}

.ae-detail-free {
  color: var(--ae-gold);
  font-weight: 700;
  letter-spacing: 0.12em;
}

/* Countdown */
.ae-countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 16px 0 32px;
}

.ae-cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ae-cd-num {
  font-family: 'Abolition-Oblique', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--ae-gold);
  line-height: 1;
}

.ae-cd-lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ae-text-muted);
  margin-top: 4px;
}

.ae-presented {
  font-size: 11px;
  color: var(--ae-text-muted);
  letter-spacing: 0.08em;
  margin-top: 40px;
}


/* ═══════════════════════════════════
   BUTTONS
═══════════════════════════════════ */
.ae-btn {
  display: inline-block;
  font-family: 'Abolition-Oblique', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--ae-transition);
}

.ae-btn-primary {
  background: var(--ae-gold);
  color: #0f0e0a;
  padding: 14px 40px;
  font-size: 15px;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(245,166,35,0.3);
}

.ae-btn-primary:hover {
  box-shadow: 0 6px 30px rgba(245,166,35,0.5);
  transform: translateY(-2px);
}

.ae-btn-lg {
  padding: 18px 52px;
  font-size: 17px;
}


/* ═══════════════════════════════════
   2. URGENCY BAR
═══════════════════════════════════ */
.ae-urgency {
  background: var(--ae-purple);
  color: var(--pa-gold);
  text-align: center;
  padding: 16px 20px;
  font-family: 'Abolition-Oblique', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.9), 0 0 30px rgba(212, 175, 55, 0.5);
}


/* ═══════════════════════════════════
   3. ABOUT THE EVENT
═══════════════════════════════════ */
.ae-about {
  background: #1a1508;
  background-image:
    radial-gradient(ellipse 800px 400px at 20% 50%,
      rgba(245,166,35,0.04) 0%, transparent 70%);
}

.ae-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
  align-items: center;
}

@media (min-width: 768px) {
  .ae-about-grid {
    grid-template-columns: 260px 1fr;
  }
}

.ae-about-photo {
  display: flex;
  justify-content: center;
}

.ae-director-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 55% 55%;
  border: 3px solid var(--ae-gold);
  box-shadow: 0 0 30px rgba(124,63,196,0.25), 0 0 60px rgba(124,63,196,0.1);
}

.ae-about-name {
  font-family: 'Abolition-Oblique', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ae-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  text-shadow: 0 0 40px rgba(245,166,35,0.15);
}

.ae-about-role {
  font-size: 13px;
  color: var(--ae-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ae-about-bio {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

html .ae-page .ae-about-bio p,
html .ae-page .ae-about-bio span,
html .ae-page .ae-about-bio strong,
html .ae-page .ae-about-bio em,
html .ae-page .ae-about-bio * {
  color: rgba(255,255,255,0.82) !important;
}

.ae-about-quote {
  font-style: italic;
  color: var(--ae-gold);
  font-size: 15px;
  line-height: 1.6;
  border-left: 3px solid var(--ae-gold);
  padding-left: 16px;
  margin: 0;
}

/* Stat cards */
.ae-stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .ae-stat-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ae-stat-card {
  background: linear-gradient(145deg, #1c1a10 0%, #111008 100%);
  border: 1px solid rgba(245,166,35,0.22);
  border-radius: var(--ae-r);
  padding: 28px 16px;
  text-align: center;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(245,166,35,0.12);
  position: relative;
  overflow: hidden;
}

.ae-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(245,166,35,0.25), transparent);
}

.ae-stat-val {
  font-family: 'Abolition-Oblique', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ae-gold);
  line-height: 1.1;
}

.ae-stat-val-sm {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-family: 'Objective', sans-serif;
  line-height: 1.4;
  color: var(--ae-gold);
}

.ae-stat-sfx {
  font-size: 0.6em;
  vertical-align: super;
}

.ae-stat-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  margin-top: 6px;
}


/* ═══════════════════════════════════
   4. QUOTE BAND
═══════════════════════════════════ */
.ae-quote-band {
  padding: 64px 20px;
  text-align: center;
  background: #0c0b08;
  background-image:
    radial-gradient(ellipse 700px 300px at 50% 50%,
      rgba(245,166,35,0.04) 0%, transparent 70%);
  border-top: 1px solid rgba(245,166,35,0.1);
  border-bottom: 1px solid rgba(245,166,35,0.1);
}

.ae-quote-band-text {
  font-family: 'Abolition-Oblique', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  color: var(--ae-text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto 16px;
}

.ae-quote-band-cite {
  font-style: normal;
  font-size: 13px;
  color: var(--ae-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* ═══════════════════════════════════
   5. COLLEGE PROGRAMS
═══════════════════════════════════ */
.ae-colleges {
  background: var(--ae-bg-alt);
}

.ae-college-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .ae-college-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .ae-college-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ae-college-card {
  background: linear-gradient(145deg, #1a1815 0%, #0f0e0a 100%);
  border: 1px solid rgba(245,166,35,0.16);
  border-radius: var(--ae-r);
  padding: 28px 16px;
  text-align: center;
  transition: border-color var(--ae-transition),
              box-shadow var(--ae-transition),
              transform var(--ae-transition);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.ae-college-card:hover {
  border-color: rgba(245,166,35,0.45);
  box-shadow: 0 8px 32px rgba(245,166,35,0.1),
              0 4px 16px rgba(0,0,0,0.4);
  transform: translateY(-3px);
}

.ae-college-card-tba {
  border-style: dashed;
  border-color: rgba(124,63,196,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ae-college-card-tba:hover {
  border-color: rgba(124,63,196,0.6);
  border-style: dashed;
}

.ae-college-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ae-college-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.ae-college-name {
  font-family: 'Abolition-Oblique', sans-serif;
  font-size: 1rem;
  color: var(--ae-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  line-height: 1.2;
}

.ae-college-coach {
  font-size: 13px;
  color: var(--ae-text-mid);
}

.ae-college-role {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ae-text-muted);
  margin-top: 2px;
}


/* ═══════════════════════════════════
   6. SCHEDULE
═══════════════════════════════════ */
.ae-schedule {
  background: #0f0e0a;
}

.ae-timeline {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding-left: 28px;
}

.ae-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--ae-border);
}

.ae-timeline-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  position: relative;
}

.ae-timeline-dot {
  position: absolute;
  left: -24px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ae-gold);
  box-shadow: 0 0 10px rgba(245,166,35,0.4);
  flex-shrink: 0;
}

.ae-timeline-time {
  font-family: 'Abolition-Oblique', sans-serif;
  font-size: 1rem;
  color: var(--ae-gold);
  min-width: 90px;
  text-transform: uppercase;
}

.ae-timeline-label {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  line-height: 1.5;
}


/* ═══════════════════════════════════
   7. ROSTER
═══════════════════════════════════ */
.ae-roster {
  background: var(--ae-bg-alt);
}

.ae-roster-grade-hdr {
  font-family: 'Abolition-Oblique', sans-serif;
  font-size: 1.2rem;
  color: var(--ae-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 0 8px;
  border-bottom: 2px solid var(--ae-border-hi);
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ae-roster-grade-hdr:first-child {
  margin-top: 0;
}

.ae-roster-snowflake {
  font-size: 1rem;
  color: var(--ae-purple);
}

.ae-roster-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--ae-border);
  gap: 12px;
}

.ae-roster-linked {
  background: rgba(245,166,35,0.03);
  padding: 12px 12px;
  margin: 0 -12px;
  border-radius: 6px;
}

.ae-roster-name {
  font-size: 14px;
  color: var(--ae-text);
}

.ae-roster-link {
  color: var(--ae-gold);
  text-decoration: none;
  transition: color var(--ae-transition);
}

.ae-roster-link:hover {
  color: var(--ae-text);
  text-decoration: underline;
}

.ae-roster-school {
  font-size: 12px;
  color: var(--ae-text-muted);
  text-align: right;
  letter-spacing: 0.04em;
}


/* ═══════════════════════════════════
   8. REGISTRATION / CTA
═══════════════════════════════════ */
.ae-register {
  background: #0f0e0a;
  background-image:
    radial-gradient(ellipse 600px 400px at 50% 60%,
      rgba(124,63,196,0.06) 0%, transparent 70%);
  text-align: center;
  padding: 100px 0;
  border-top: 1px solid var(--ae-border);
}

.ae-register-title {
  font-family: 'Abolition-Oblique', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--ae-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.ae-register-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-bottom: 28px;
}

.ae-reg-item {
  font-size: 14px;
  color: var(--ae-text-mid);
}

.ae-reg-item strong {
  color: var(--ae-text);
}

.ae-reg-free {
  color: var(--ae-gold);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.ae-register-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  font-size: 14px;
  color: var(--ae-text-mid);
  margin-bottom: 36px;
}

.ae-contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ae-border-hi);
  border-radius: var(--ae-r);
  padding: 28px 40px;
  margin: 32px auto;
  max-width: 400px;
  text-align: center;
}

.ae-contact-label {
  font-family: 'Objective', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ae-text-mid);
  margin: 0 0 8px;
}

.ae-contact-name {
  font-family: 'Abolition-Oblique', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--ae-text);
  margin: 0 0 12px;
  letter-spacing: 0.04em;
}

.ae-contact-phone {
  font-family: 'Objective', sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--ae-gold);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.ae-contact-phone:hover {
  color: var(--ae-teal);
}

.ae-eligibility {
  font-family: 'Objective', sans-serif;
  font-weight: 700;
  font-size: clamp(0.7rem, 1.2vw, 0.8rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.ae-phone-link {
  color: var(--ae-gold);
  text-decoration: none;
}

.ae-phone-link:hover {
  text-decoration: underline;
}

.ae-loss-line {
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin-top: 24px;
  letter-spacing: 0.04em;
}


/* ═══════════════════════════════════
   9. SPONSORS
═══════════════════════════════════ */
.ae-sponsors {
  background: var(--ae-bg-alt);
  padding-bottom: 100px;
}

.ae-sponsor-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.ae-sponsor-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f0e0a;
  border: 1px solid var(--ae-border);
  border-radius: 40px;
  padding: 10px 24px;
  transition: border-color var(--ae-transition);
}

.ae-sponsor-pill:hover {
  border-color: var(--ae-gold);
}

.ae-sponsor-pill img {
  height: 36px;
  width: auto;
  object-fit: contain;
}


/* ═══════════════════════════════════
   RESPONSIVE — MOBILE (375px)
═══════════════════════════════════ */
@media (max-width: 480px) {
  .ae-section {
    padding: 56px 0;
  }

  .ae-hero {
    padding: 70px 16px 40px;
  }

  .ae-logo-circular {
    width: 140px;
    height: 140px;
  }

  .ae-countdown {
    gap: 14px;
  }

  .ae-college-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ae-college-logo {
    width: 60px;
    height: 60px;
  }

  .ae-timeline {
    padding-left: 24px;
  }

  .ae-timeline-time {
    min-width: 70px;
    font-size: 0.85rem;
  }

  .ae-register {
    padding: 64px 0;
  }
}

/* ═══════════════════════════════════
   RESPONSIVE — TABLET (768px)
═══════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1024px) {
  .ae-college-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══════════════════════════════════
   RESPONSIVE — DESKTOP (1440px+)
═══════════════════════════════════ */
@media (min-width: 1440px) {
  .ae-container {
    max-width: 1280px;
  }
}
