/* ==============================================
   Header Banner
   ============================================== */
.ch-header-banner {
  background: #00214c;
  height: 80px;
  position: relative;
  z-index: 1000;
  overflow: visible;
}

.ch-header-banner-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Reserve horizontal space; logo is absolutely positioned to overflow below */
.ch-banner-logo-col {
  position: relative;
  width: 172px;
  height: 100%;
  flex-shrink: 0;
  margin-right: 16px;
}

.ch-banner-logo-link {
  position: absolute;
  bottom: -100px; /* logo bottom is 100px below banner bottom */
  left: 0;
  display: block;
  z-index: 1001;
}

.ch-banner-logo {
  height: 150px;
  width: 172px;
  object-fit: contain;
  display: block;
}

/* Content row: two-tone title · university · hashtag */
.ch-banner-content {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1;
}

.ch-banner-title-link {
  display: flex;
  align-items: baseline;
  gap: 1.5em;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.ch-banner-word-1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 60px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #fff;
  line-height: 1;
}

.ch-banner-word-2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 60px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gold);
  line-height: 1;
}

.ch-banner-dot {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 14px;
  flex-shrink: 0;
  line-height: 1;
  user-select: none;
}


.ch-banner-hashtag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #b9975b;
  white-space: nowrap;
  flex-shrink: 0;
}

.ch-banner-social {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  flex-shrink: 0;
}

.ch-banner-social-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.18s;
}

.ch-banner-social-link:hover {
  color: var(--gold);
}

.ch-banner-social-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: block;
  fill: currentColor;
}

.ch-banner-social-link span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}

/* ==============================================
   Sticky Nav Bar
   ============================================== */
.ch-header {
  background: rgba(0, 17, 42, 0.95);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 99; /* intentionally below banner logo (z-index 1001) */
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.ch-header-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  height: 52px;
  position: relative;
}

/* ==============================================
   Sticky Logo (desktop: hidden until scrolled)
   ============================================== */
.ch-sticky-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  /* Always holds the same width as the banner logo col so nav links
     are never obscured by the overlapping banner logo */
  width: 172px;
  margin-right: 16px;
  opacity: 0;
  pointer-events: none;
}

.ch-sticky-logo {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.ch-header.is-sticky .ch-sticky-logo-link {
  opacity: 1;
  pointer-events: auto;
}

/* When morph JS is active, suppress the native sticky logo —
   the morph element provides the visual instead */
.ch-header.ch-has-morph .ch-sticky-logo-link,
.ch-header.ch-has-morph.is-sticky .ch-sticky-logo-link {
  opacity: 0;
  pointer-events: none;
}

/* ==============================================
   Logo morph element (created by JS)
   ============================================== */
#ch-logo-morph {
  opacity: 0;
}

#ch-logo-morph img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Mobile-only team name in nav bar */
.ch-header-mobile-name {
  display: none;
}

/* ==============================================
   Nav
   ============================================== */
.ch-nav {
  display: flex;
  align-items: stretch;
  position: relative;
  flex: 1;
}

.ch-nav-ink {
  position: absolute;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
  transition:
    left 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.18s;
  pointer-events: none;
  opacity: 0;
}

.ch-nav-list {
  list-style: none;
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  flex: 1;
}

.ch-nav-list > li {
  position: relative;
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
}

.ch-nav-list > li:hover > ul.sub-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.ch-nav-list > li:hover > a {
  color: #fff;
}

/* Nav links */
.ch-nav-list > li > a,
.ch-nav-link {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 0 14px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s;
  white-space: nowrap;
  text-decoration: none;
  height: 100%;
}

.ch-nav-list > li.current-menu-item > a,
.ch-nav-list > li.current_page_item > a {
  color: #fff;
}

/* Chevron for dropdowns */
.ch-nav-list > li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 4px;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.ch-nav-list > li.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

/* ==============================================
   Ticket CTA nav item (menu item with class "tix")
   ============================================== */
.ch-nav-list > li.tix {
  margin-left: auto;
}

.ch-nav-list > li.tix > a {
  background: var(--gold);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
  padding: 0 20px;
  gap: 8px;
  transition: background 0.15s;
}

.ch-nav-list > li.tix > a:hover {
  background: var(--gold-bright);
  color: #ffffff;
}

.ch-nav-list > li.tix > a svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: currentColor;
  display: block;
}

/* Mobile ticket icon button — hidden on desktop, shown via responsive.css */
.ch-tix-mobile-btn {
  display: none;
}

/* ==============================================
   Buy Tickets Button
   ============================================== */
.ch-btn-tickets {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 22px;
  background: var(--gold);
  color: var(--bg);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}

.ch-btn-tickets:hover {
  background: var(--gold-bright);
  color: var(--bg);
}

.ch-btn-tickets svg {
  flex-shrink: 0;
}

/* ==============================================
   Dropdown — shared panel styles
   ============================================== */
.ch-nav-list > li > ul.sub-menu,
.ch-nav-list > li > ul.sub-menu > li > ul.sub-menu {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.18);
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 5px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.17s cubic-bezier(0.4, 0, 0.2, 1);
}

.ch-nav-list > li > ul.sub-menu::before,
.ch-nav-list > li > ul.sub-menu::after {
  display: none;
}

/* Children: drop down from the nav bar */
.ch-nav-list > li > ul.sub-menu {
  top: 100%;
  left: 0;
  border-top: 3px solid var(--navy-mid);
  border-radius: 0 0 4px 4px;
  transform: translateY(-6px);
  z-index: 300;
}

.ch-nav-list > li:hover > ul.sub-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* Grandchildren: fly out to the right */
.ch-nav-list > li > ul.sub-menu > li > ul.sub-menu {
  top: -1px;
  left: 100%;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 4px 4px;
  transform: translateX(-6px);
  z-index: 400;
}

.ch-nav-list > li > ul.sub-menu > li:hover > ul.sub-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

/* ==============================================
   Dropdown — list items
   ============================================== */
.ch-nav-list > li > ul.sub-menu > li,
.ch-nav-list > li > ul.sub-menu > li > ul.sub-menu > li {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Subtle separator between items */
.ch-nav-list > li > ul.sub-menu > li + li,
.ch-nav-list > li > ul.sub-menu > li > ul.sub-menu > li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ==============================================
   Dropdown — links (children + grandchildren)
   ============================================== */
.ch-nav-list > li > ul.sub-menu > li > a,
.ch-nav-list > li > ul.sub-menu > li > ul.sub-menu > li > a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 15px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  border-left: 3px solid transparent;
  transition: color 0.12s, background 0.12s, border-color 0.12s;
}

.ch-nav-list > li > ul.sub-menu > li > a:hover,
.ch-nav-list > li > ul.sub-menu > li > ul.sub-menu > li > a:hover {
  color: var(--navy-mid);
  background: rgba(0, 33, 76, 0.05);
  border-left-color: var(--gold);
}

/* Right-pointing chevron on items that have grandchildren */
.ch-nav-list > li > ul.sub-menu > li.menu-item-has-children > a::after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.12s;
}

.ch-nav-list > li > ul.sub-menu > li.menu-item-has-children:hover > a::after {
  opacity: 0.85;
}

/* ==============================================
   Hamburger Toggle — hidden on desktop
   ============================================== */
.ch-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px;
  margin-left: auto;
  flex-shrink: 0;
}

.ch-hamburger,
.ch-hamburger::before,
.ch-hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}

.ch-hamburger::before,
.ch-hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.ch-hamburger::before {
  top: -7px;
}
.ch-hamburger::after {
  top: 7px;
}

.ch-menu-toggle[aria-expanded="true"] .ch-hamburger {
  background: transparent;
}
.ch-menu-toggle[aria-expanded="true"] .ch-hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.ch-menu-toggle[aria-expanded="true"] .ch-hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}
