/* ==========================================================================
   volunteer-events.css
   Shared styles for the volunteer event hub and the per-event "run of show"
   pages:
     /volunteer/events                 (dashboard of upcoming events)
     /volunteer/events/columbus2026    (run of show)
     /volunteer/events/cincinnati2026  (run of show)

   Brand rules honored: solid navy/cyan/white surfaces, the Progress Pride
   palette used only as a thin accent bar. Tokens come from css/style.css.
   All classes are prefixed `ve-` so nothing here collides with the global
   sheet.
   ========================================================================== */

.ve-page { background: var(--dark-bg); }

/* Thin pride accent bar reused from the rest of the site. */
.ve-gradient-bar {
  height: 6px;
  width: 100%;
  background: var(--pride-gradient);
}

.ve-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.ve-hero {
  padding: calc(var(--nav-height) + 2.5rem) 1.5rem 2rem;
  max-width: 960px;
  margin: 0 auto;
}
.ve-hero .section-label { margin-bottom: 0.75rem; }
.ve-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.12;
  color: var(--text-white);
  margin-bottom: 0.85rem;
}
.ve-hero .ve-lede {
  font-family: "Roboto Slab", serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 640px;
}

/* Breadcrumb on the run-of-show pages. */
.ve-crumbs {
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.ve-crumbs a { color: var(--text-accent); text-decoration: none; }
.ve-crumbs a:hover { text-decoration: underline; }
.ve-crumbs span[aria-hidden] { margin: 0 0.4rem; color: var(--text-muted); }

/* --------------------------------------------------------------------------
   Dashboard: event cards
   -------------------------------------------------------------------------- */
.ve-events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0 3.5rem;
}
.ve-event-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(19, 45, 68, 0.92), rgba(12, 34, 55, 0.9));
  border: 1px solid var(--dark-bg-light);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.ve-event-card:hover,
.ve-event-card:focus-visible {
  border-color: var(--color-light-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 77, 255, 0.18);
  outline: none;
}
.ve-event-card .ve-card-bar { height: 5px; background: var(--pride-gradient); }
.ve-event-card .ve-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }

.ve-date-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  align-self: flex-start;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark-bg);
  background: var(--color-light-blue);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}
.ve-event-card h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-white);
  margin-bottom: 0.3rem;
}
.ve-event-card .ve-event-where {
  font-family: "Roboto Slab", serif;
  font-size: 0.9rem;
  color: var(--text-accent);
  margin-bottom: 0.85rem;
}
.ve-event-card p {
  font-family: "Roboto Slab", serif;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  flex: 1;
}
.ve-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.ve-role-pill {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  background: rgba(112, 214, 236, 0.12);
  border: 1px solid rgba(112, 214, 236, 0.3);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
}
.ve-card-cta {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-light-blue);
}
.ve-card-cta::after { content: " \2192"; }

.ve-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px dashed var(--border-medium);
  border-radius: 12px;
  font-family: "Roboto Slab", serif;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Run of show: at-a-glance facts bar
   -------------------------------------------------------------------------- */
.ve-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  background: var(--border-medium);
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.ve-fact {
  background: rgba(19, 45, 68, 0.6);
  padding: 1.1rem 1.25rem;
}
.ve-fact-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.ve-fact-value {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-white);
  line-height: 1.3;
}
.ve-fact-value small {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.15rem;
  font-family: "Roboto Slab", serif;
}

/* --------------------------------------------------------------------------
   Run of show: sections
   -------------------------------------------------------------------------- */
.ve-section { margin-bottom: 2.75rem; }
.ve-section > h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--text-white);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.ve-section > h2 .ve-ico { font-size: 1.3rem; }
.ve-section > .ve-section-sub {
  font-family: "Roboto Slab", serif;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 680px;
}

/* Meet-up / location callout */
.ve-callout {
  background: rgba(112, 214, 236, 0.08);
  border: 1px solid rgba(112, 214, 236, 0.3);
  border-left: 4px solid var(--color-light-blue);
  border-radius: 10px;
  padding: 1.25rem 1.4rem;
}
.ve-callout h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 0.3rem;
}
.ve-callout p {
  font-family: "Roboto Slab", serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0.2rem 0;
}
.ve-callout a { color: var(--text-accent); }
.ve-map-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-light-blue);
  text-decoration: none;
}
.ve-map-link:hover { text-decoration: underline; }

/* Timeline (run of show) */
.ve-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--dark-bg-lighter);
}
.ve-timeline li {
  position: relative;
  padding: 0 0 1.4rem 1.6rem;
}
.ve-timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-light-blue);
  border: 2px solid var(--dark-bg);
}
.ve-timeline li:last-child { padding-bottom: 0; }
.ve-tl-time {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-light-blue);
}
.ve-tl-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-white);
  margin: 0.1rem 0 0.2rem;
}
.ve-tl-desc {
  font-family: "Roboto Slab", serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* Roster table */
.ve-table-wrap { overflow-x: auto; }
.ve-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Roboto Slab", serif;
  font-size: 0.92rem;
  min-width: 480px;
}
.ve-table th,
.ve-table td {
  text-align: left;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-light);
}
.ve-table th {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.ve-table tbody tr:hover { background: rgba(112, 214, 236, 0.05); }
.ve-table td strong { color: var(--text-white); font-weight: 600; }

.ve-tag {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
}
.ve-tag--lead { background: rgba(112, 214, 236, 0.18); color: var(--text-accent); border: 1px solid rgba(112, 214, 236, 0.35); }
.ve-tag--march { background: rgba(0, 128, 38, 0.18); color: var(--text-success); border: 1px solid rgba(74, 222, 128, 0.3); }
.ve-tag--table { background: rgba(251, 191, 36, 0.14); color: var(--text-warning); border: 1px solid rgba(251, 191, 36, 0.3); }

/* Checklist / bring-list grid */
.ve-bring {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.6rem 1.5rem;
}
.ve-bring li {
  position: relative;
  padding-left: 1.6rem;
  font-family: "Roboto Slab", serif;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-light);
}
.ve-bring li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--text-success);
  font-weight: 700;
}

/* Contact / captain cards */
.ve-contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.ve-contact {
  background: rgba(19, 45, 68, 0.6);
  border: 1px solid var(--border-medium);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
}
.ve-contact .ve-contact-role {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-accent);
  margin-bottom: 0.3rem;
}
.ve-contact .ve-contact-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--text-white);
  font-size: 1.02rem;
}
.ve-contact a {
  font-family: "Roboto Slab", serif;
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: none;
  display: block;
  margin-top: 0.2rem;
}
.ve-contact a:hover { color: var(--color-light-blue); }

/* Tabling instruction steps */
.ve-steps { counter-reset: ve-step; list-style: none; margin: 0; padding: 0; }
.ve-steps li {
  position: relative;
  padding: 0 0 1rem 2.6rem;
  font-family: "Roboto Slab", serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
}
.ve-steps li::before {
  counter-increment: ve-step;
  content: counter(ve-step);
  position: absolute;
  left: 0;
  top: -0.1rem;
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(112, 214, 236, 0.15);
  border: 1px solid rgba(112, 214, 236, 0.4);
  color: var(--color-light-blue);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.ve-steps li strong { color: var(--text-white); }

/* Note / disclaimer */
.ve-note {
  font-family: "Roboto Slab", serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
  margin-top: 1rem;
}

/* CTA band */
.ve-cta-band {
  text-align: center;
  background: linear-gradient(135deg, rgba(19, 45, 68, 0.95), rgba(12, 34, 55, 0.95));
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 3rem 1.5rem;
  margin-top: 1rem;
}
.ve-cta-band h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  color: var(--text-white);
  margin-bottom: 0.6rem;
}
.ve-cta-band p {
  font-family: "Roboto Slab", serif;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}

.ve-btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.ve-btn-row--center { justify-content: center; }

@media (max-width: 600px) {
  .ve-facts { grid-template-columns: 1fr 1fr; }
}
