/* ---------- CSS Reset & Variables ---------- */
:root {
  /* Core theme colors (updated to your palette) */
  --primary: #241137;
  /* deep purple */
  --secondary: #a04b1d;
  /* warm russet */
  --tertiary: #c8ba9a;
  /* muted sand */

  /* Neutral surfaces & text (kept) */
  --bg: #fff;
  --surface: #18181b;
  --surface-2: #202025;
  --text: #e6e6eb;
  --muted: #b1b1bb;
  --band: #121217;

  /* Derived accents & states (aligned to new palette) */
  --accent: var(--tertiary);
  /* used for subtle highlights */
  --ring: color-mix(in oklab, var(--primary), transparent 65%);

  --radius: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

  --maxw: 1120px;
  --gap: 1rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Cardo, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  padding-left: 1.1rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 .6rem 0;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  font-weight: 800;
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.lead {
  font-size: 1.125rem;
  color: var(--text);
  opacity: 0.95;
}

.subhead {
  color: var(--muted);
  margin-top: .25rem;
}

.muted {
  color: var(--muted);
}

.fine {
  color: var(--muted);
  font-size: .9rem;
}

/* Accent text now uses tertiary for a softer highlight */
.accent {
  color: var(--accent);
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0px;
  padding: 0 1rem;
}

.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--surface);
}

.section--band {
  background: var(--band);
}

.center {
  text-align: center;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: .5rem;
  background: var(--tertiary);
  color: #111;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.brand-text {
  font-family: Cardo, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.25rem;
  letter-spacing: .2px;
}

/* Ensure headings use Cardo */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Cardo, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  /* Cardo supports 400 and 700 */
}

/* Hamburger */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: .4rem;
  border-radius: 8px;
}

.nav-toggle-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
}

/* Nav list */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--text);
  opacity: .9;
}

.main-nav a:hover {
  opacity: 1;
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--bg);
    transform: translateY(-120%);
    transition: transform .3s ease;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .main-nav ul {
    flex-direction: column;
    gap: .75rem;
  }

  .nav-toggle:checked~.main-nav {
    transform: translateY(0);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: clip;
}

.hero-inner {
  padding: 72px 0;
}

.hero .meta {
  color: var(--muted);
  margin: .5rem 0 1rem;
}

.hero-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  padding: 0;
  margin: 1rem 0 0;
  justify-content: center;
}

.hero-facts li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: .35rem .6rem;
  border-radius: 999px;
  font-size: .95rem;
  color: var(--text);
}

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--surface-2);
  --_fg: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .65rem 1rem;
  border-radius: 999px;
  background: var(--_bg);
  color: var(--_fg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  transition: transform .04s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn:focus {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

/* Primary button now uses your Primary color */
.btn--primary {
  --_bg: var(--primary);
  --_fg: #f3f3f6;
  border-color: transparent;
}

/* Secondary button variant (new) */
.btn--secondary {
  --_bg: var(--secondary);
  --_fg: #111;
  border-color: transparent;
}

/* Ghost button uses tertiary for border on hover */
.btn--ghost {
  background: transparent;
  border-color: color-mix(in oklab, var(--tertiary), transparent 60%);
}

.btn--ghost:hover {
  border-color: color-mix(in oklab, var(--tertiary), transparent 30%);
}

.btn--lg {
  padding: .8rem 1.2rem;
  font-weight: 700;
}

.btn--sm {
  padding: .45rem .8rem;
  font-weight: 600;
}

/* ---------- Layout helpers ---------- */
.grid {
  display: grid;
  gap: 1rem;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {

  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

/* ---------- Cards & Blocks ---------- */
.card {
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

/* Soft card gets a very subtle primary tint */
.card--soft {
  background:
    linear-gradient(180deg,
      color-mix(in oklab, var(--primary), transparent 85%),
      #121217);
}

/* Key-value list */
.kv {
  display: grid;
  gap: .6rem;
}

.kv dt {
  color: var(--muted);
  font-weight: 600;
}

.kv dd {
  margin: 0;
}

/* ---------- Checklists ---------- */
.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  padding-left: 1.6rem;
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--tertiary);
  font-weight: 800;
}

/* ---------- Lineup ---------- */
.artist {
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.artist img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}

.artist h3 {
  padding: .8rem 1rem 0;
}

.artist .muted {
  padding: 0 1rem 1rem;
}

/* ---------- Schedule ---------- */
.timeline {
  display: grid;
  gap: 1rem;
}

.time-day {
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1rem;
}

.time-day h3 {
  margin-bottom: .4rem;
}

.time-day ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .4rem;
}

/* Time label accented with tertiary */
.time-day time {
  display: inline-block;
  min-width: 3.2rem;
  color: var(--tertiary);
  font-weight: 700;
}

/* ---------- CTA blocks ---------- */
/* Gradient uses primary (deep) + tertiary (warm highlight) */
.cta {
  background: linear-gradient(180deg,
      color-mix(in oklab, var(--primary), transparent 70%),
      color-mix(in oklab, var(--tertiary), transparent 82%));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-actions {
  display: flex;
  gap: .6rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Sponsors (scroll-snap row) ---------- */
.sponsor-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: .25rem;
  scroll-snap-type: x mandatory;
}

.sponsor-row img {
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: .75rem;
  aspect-ratio: 3/2;
  object-fit: contain;
  scroll-snap-align: center;
}

/* ---------- FAQ ---------- */
.faq details {
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: .8rem 1rem;
  margin-bottom: .6rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq summary::-webkit-details-marker {
  color: var(--tertiary);
}

.faq p {
  margin: .6rem 0 0;
  color: var(--muted);
}

/* ---------- Map Placeholder ---------- */
.map-placeholder {
  background: repeating-linear-gradient(45deg, #1b1b22, #1b1b22 10px, #17171c 10px, #17171c 20px);
  border: 1px dashed color-mix(in oklab, var(--tertiary), transparent 65%);
  border-radius: var(--radius);
  min-height: 240px;
  display: grid;
  place-items: center;
  color: var(--muted);
}

/* ---------- Forms ---------- */
.inline-form {
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.inline-form input[type="email"] {
  background: var(--surface-2);
  border: 1px solid color-mix(in oklab, var(--tertiary), transparent 65%);
  border-radius: 999px;
  color: var(--text);
  padding: .65rem .9rem;
  min-width: 260px;
}

.inline-form input[type="email"]::placeholder {
  color: #8b8b93;
}

.inline-form input[type="email"]:focus {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0c0c0f;
  padding: 32px 0;
}

.footer-inner {
  display: grid;
  gap: 1rem;
  align-items: center;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .35rem;
}

.footer-nav a {
  color: var(--muted);
}

.footer-nav a:hover {
  color: var(--text);
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ---------- Screenreader-only ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.navbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 50 !important;
  padding-top: 0px;
  padding-bottom: 0px
}

.navbar-pagetop-wrap {
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  width: 100%;
}

.navbar-pagetop {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  height: 32px;
  justify-content: flex-end;
  max-width: var(--maxw);
  width: 100%;
  font-size: 16px;
  user-select: none;
  margin-right: auto;
  margin-left: auto
}

.navbar-pagetop nav {
  height: 32px;
}

.navbar-pagetop li {
  font-weight: 700;
  overflow: hidden;
  padding: 8px 10px;
  text-overflow: ellipsis;
  transition: opacity .1s ease-out;
  line-height: 16px;
}

.navbar-pagetop a {
  text-decoration: none;
  color: rgb(48, 66, 84);
}

.navbar-pagetop a:hover {
  text-decoration: none !important;
}

.nav-link {
  padding-top: 8px !important;
  background-color: transparent !important;
  color: #0c0c0f !important;
}

ul.nav.navbar-nav.weblinks .nav-link.active {
  color: #a04b1d !important;
  text-decoration: none !important;
  font-weight: bold !important;
} 

.navbar-toggler {
  border-color: #c8ba9a !important;
  background-color: #241137 !important;
}

.navbar-toggler:focus {
  border-color: #241137 !important;
  background-color: #a04b1d !important;
}

.navbar-nav > li > a:focus {
  border: none !important;
  outline: none !important;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding: 0px
}

.topRow {
  padding: 0px;
  max-height: 565px;
}

.promoVideo {
  object-fit: fill;
  overflow-x: clip;
  overflow-y: clip;
  overflow-clip-margin: content-box;
  width: 100%;
  aspect-ratio: 1320/565;
}