/* H Connect NIL — NCAA Athletic Style */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #006233;
  --green-dark:  #004222;
  --green-mid:   #00733b;
  --gold:        #FFC726;
  --gold-dark:   #e6b000;
  --gold-light:  #FFD85C;
  --white:       #ffffff;
  --off-white:   #f5f5f5;
  --charcoal:    #1a1a1a;
  --gray:        #666;
  --gray-light:  #e8e8e8;
  --radius:      4px;
  --shadow:      0 4px 20px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  background: var(--green-dark);
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
}

.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0;
}

nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 18px;
  height: 70px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color 0.15s, border-color 0.15s;
}

nav ul li a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 100px 5% 90px;
  overflow: hidden;
}

/* Diagonal stripe accent */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    linear-gradient(135deg,
      rgba(0,66,34,0.97) 0%,
      rgba(0,98,51,0.92) 50%,
      rgba(0,115,59,0.85) 100%);
  z-index: 0;
}

/* Gold accent bar top */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--gold);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo {
  width: 220px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
  opacity: 0.6;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 800px;
}

.hero h1 .gold {
  color: var(--gold);
  display: inline;
}

.hero p {
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 36px;
  opacity: 0.85;
  font-weight: 400;
}

.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 44px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s, transform 0.12s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.hero-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

.hero-sub {
  margin-top: 18px;
  font-size: 0.82rem;
  opacity: 0.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
}

/* ── SECTION STRUCTURE ── */
section { padding: 70px 5%; }
section:nth-child(even) { background: var(--white); }

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  line-height: 1.05;
}

.section-sub {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 48px;
  color: var(--gray);
  font-size: 1rem;
}

/* ── SHOWS ── */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  max-width: 1050px;
  margin: 0 auto;
}

.show-card {
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.show-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.2);
}

.show-card-top {
  background: var(--gold);
  padding: 6px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.show-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.show-card-body {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.show-logo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.show-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  line-height: 1.1;
}

.show-card p {
  font-size: 0.92rem;
  opacity: 0.78;
  line-height: 1.6;
}

/* ── WHY ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1050px;
  margin: 0 auto;
}

.why-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  border-left: 4px solid var(--gold);
  border-top: none;
  transition: transform 0.15s;
}

.why-card:hover { transform: translateY(-2px); }

.why-card .why-icon { font-size: 1.9rem; margin-bottom: 12px; }

.why-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.why-card p { font-size: 0.9rem; color: var(--gray); }

/* ── PACKAGES ── */
.show-block { margin-bottom: 64px; }
.show-block:last-child { margin-bottom: 0; }

.show-block-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 6px;
  background: var(--green-dark);
  border-radius: var(--radius);
  padding: 16px 24px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  border-left: 5px solid var(--gold);
}

.show-block-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.show-block-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.show-block-sub {
  text-align: center;
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 24px;
  display: none;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.tier-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gray-light);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.15s;
}

.tier-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}

.tier-card.featured {
  border-top-color: var(--gold);
  background: var(--green-dark);
  color: var(--white);
}

.tier-card.season {
  border-top-color: var(--gold);
  background: linear-gradient(150deg, var(--green-dark) 0%, #003320 100%);
  color: var(--white);
}

.tier-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  background: var(--gold);
  color: var(--green-dark);
  margin-bottom: 14px;
  align-self: flex-start;
}

.tier-card.season .tier-badge { background: var(--white); color: var(--green-dark); }

.tier-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.tier-card.featured .tier-name,
.tier-card.season .tier-name { color: var(--gold); }

.tier-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 2px;
}

.tier-card.featured .tier-price,
.tier-card.season .tier-price { color: var(--white); }

.tier-price-sub {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 18px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tier-card.featured .tier-price-sub,
.tier-card.season .tier-price-sub { color: rgba(255,255,255,0.55); }

.tier-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.tier-features li {
  font-size: 0.9rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--charcoal);
}

.tier-card.featured .tier-features li,
.tier-card.season .tier-features li {
  color: rgba(255,255,255,0.82);
  border-bottom-color: rgba(255,255,255,0.1);
}

.tier-features li::before {
  content: "▸";
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.tier-btn {
  display: block;
  text-align: center;
  background: var(--green);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s, transform 0.12s;
}

.tier-btn:hover { background: var(--green-mid); transform: translateY(-1px); }
.tier-card.featured .tier-btn { background: var(--gold); color: var(--green-dark); }
.tier-card.featured .tier-btn:hover { background: var(--gold-light); }
.tier-card.season .tier-btn { background: var(--gold); color: var(--green-dark); }
.tier-card.season .tier-btn:hover { background: var(--gold-light); }

.season-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.season-btn {
  font-size: 0.88rem;
  padding: 11px 16px;
  background: rgba(255,255,255,0.12) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.15s, border-color 0.15s !important;
}

.season-btn:hover {
  background: rgba(255,255,255,0.2) !important;
  border-color: var(--gold);
  transform: translateY(-1px);
}

.season-btn-title {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
  border-color: var(--gold) !important;
}

.season-btn-title:hover {
  background: var(--gold-light) !important;
}

/* ── REVENUE ── */
.revenue-note {
  text-align: center;
  max-width: 700px;
  margin: 48px auto 0;
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px 36px;
  border-top: 4px solid var(--gold);
}

.revenue-note > strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.revenue-split {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.revenue-slice {
  flex: 1;
  padding: 22px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.revenue-slice:nth-child(1) { background: var(--gold); }
.revenue-slice:nth-child(2) { background: rgba(255,255,255,0.1); }
.revenue-slice:nth-child(3) { background: rgba(255,255,255,0.05); }

.revenue-pct {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}

.revenue-slice:nth-child(1) .revenue-pct { color: var(--green-dark); }
.revenue-slice:nth-child(2) .revenue-pct,
.revenue-slice:nth-child(3) .revenue-pct { color: var(--gold); }

.revenue-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.revenue-slice:nth-child(1) .revenue-label { color: var(--green-dark); }
.revenue-slice:nth-child(2) .revenue-label,
.revenue-slice:nth-child(3) .revenue-label { color: rgba(255,255,255,0.8); }

.revenue-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* ── DIVIDER ── */
.show-divider {
  border: none;
  border-top: 2px solid var(--gray-light);
  max-width: 1100px;
  margin: 0 auto 56px;
}

/* ── CONTACT ── */
#contact {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
}

#contact .section-label { color: var(--gold); }
#contact .section-title { color: var(--white); }
#contact .section-sub { color: rgba(255,255,255,0.65); }

.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-size: 0.97rem;
  font-family: 'Barlow', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.38); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}

.contact-form select option { background: var(--green-dark); color: var(--white); }
.contact-form textarea { resize: vertical; min-height: 110px; }

.contact-submit {
  background: var(--gold);
  color: var(--green-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.12s;
  width: 100%;
}

.contact-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: #001a0d;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 32px 5%;
  font-size: 0.85rem;
  border-top: 3px solid var(--gold);
}

footer .footer-logo {
  width: 80px;
  height: auto;
  object-fit: contain;
  margin-bottom: 14px;
}

footer a { color: var(--gold); text-decoration: none; }
footer strong { color: rgba(255,255,255,0.75); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav ul { gap: 0; }
  nav ul li a { padding: 0 10px; font-size: 0.82rem; }
  .hero { padding: 70px 5% 60px; }
  .tier-grid { grid-template-columns: 1fr; }
  .shows-grid { grid-template-columns: 1fr; }
  .show-block-header { flex-direction: column; gap: 10px; text-align: center; }
  .revenue-split { flex-direction: column; }
  .revenue-slice { flex-direction: row; justify-content: flex-start; gap: 16px; padding: 14px 20px; }
  .revenue-pct { font-size: 1.8rem; min-width: 60px; }
}

/* ── MOBILE OVERRIDES (max 480px) ── */
@media (max-width: 480px) {

  /* NAV — hide text label, shrink logo, compress links */
  nav {
    height: 56px;
    padding: 0 4%;
  }
  .nav-logo-text { display: none; }
  .nav-logo-img { height: 36px; }
  nav ul li a {
    padding: 0 8px;
    font-size: 0.72rem;
    height: 56px;
    letter-spacing: 0.06em;
  }

  /* HERO — tighter padding, smaller logo, smaller type */
  .hero { padding: 48px 6% 44px; }
  .hero-logo {
    width: 140px;
    margin-bottom: 12px;
  }
  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
  }
  .hero-eyebrow::before,
  .hero-eyebrow::after { width: 20px; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.2rem); line-height: 1.0; }
  .hero p { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-cta { padding: 14px 28px; font-size: 1rem; }
  .hero-sub { font-size: 0.72rem; }

  /* SECTION LABELS & HEADERS */
  .section-label { font-size: 0.7rem; }
  section { padding: 48px 5% 40px; }
  section h2 { font-size: clamp(1.8rem, 8vw, 2.4rem); }

  /* SHOW CARDS */
  .shows-grid { grid-template-columns: 1fr; gap: 24px; }
  .show-card { padding: 24px 20px; }
  .show-card-img { width: 110px; height: 110px; }

  /* SHOW BLOCK HEADERS */
  .show-block-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 16px 20px;
  }
  .show-block-logo {
    width: 70px;
    height: 70px;
  }
  .show-block-title { font-size: 1.1rem; }

  /* SPONSORSHIP TIER CARDS */
  .tier-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .tier-card { padding: 24px 20px; }
  .tier-price { font-size: 2.4rem; }

  /* REVENUE SPLIT */
  .revenue-split { flex-direction: column; gap: 0; }
  .revenue-slice {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 14px 20px;
  }
  .revenue-pct { font-size: 2rem; min-width: 70px; }

  /* WHY SPONSOR GRID */
  .why-grid { grid-template-columns: 1fr; gap: 16px; }

  /* FOOTER */
  footer { padding: 32px 6%; text-align: center; }
  footer .footer-logo { width: 60px; margin: 0 auto 12px; }
}
