/* ==========================================================================
   brianfischler.com — shared stylesheet
   One file for the whole site. Edit here to change every page at once.
   ========================================================================== */

:root {
  --ink:        #14110f;   /* near-black, from the illustration's outlines */
  --paper:      #fffdf7;   /* warm off-white page background */
  --red:        #b8112c;   /* from the striped shirt; used for actions */
  --red-dark:   #8c0d21;   /* hover/active state for red */
  --park:       #1f6f3d;   /* Central Park green; used for the cause blocks */
  --sky:        #cfe4f2;   /* pale sky, for quiet fills */
  --rule:       #d8d2c6;   /* hairline dividers */
  --focus:      #0b57d0;   /* high-contrast focus ring, distinct from red */

  --display: "Archivo Black", "Helvetica Neue", Impact, sans-serif;
  --body:    "Source Serif 4", Georgia, "Times New Roman", serif;

  --measure: 34rem;        /* comfortable line length for body text */
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.65;
}

.wrap {
  width: min(64rem, 100% - 2.5rem);
  margin-inline: auto;
}

/* --- Skip link: visible as soon as it receives focus ---------------------- */

.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  font-family: var(--display);
  text-decoration: none;
  transition: top 120ms ease-in-out;
}
.skip-link:focus { top: 0.5rem; }

/* --- Focus visibility ----------------------------------------------------- */

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

/* --- Links ---------------------------------------------------------------- */

a { color: var(--red); text-decoration-thickness: 2px; text-underline-offset: 0.15em; }
a:hover { color: var(--red-dark); }

/* --- Header --------------------------------------------------------------- */

.site-header {
  border-bottom: 4px solid var(--ink);
  padding: 1.75rem 0 0;
}

.site-name {
  font-family: var(--display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
}
.site-name a { color: var(--ink); text-decoration: none; }
.site-name a:hover { color: var(--red); }

.site-tagline {
  margin: 0.15rem 0 1.25rem;
  font-style: italic;
  color: #55504a;
}

.site-header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.5rem;
}
.site-header nav a {
  display: inline-block;
  padding: 0.5rem 0;
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 4px solid transparent;
}
.site-header nav a:hover { color: var(--red); border-bottom-color: var(--red); }
.site-header nav a[aria-current="page"] { border-bottom-color: var(--red); color: var(--red); }

/* --- Headings ------------------------------------------------------------- */

h1 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 9vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 2.5rem 0 1.5rem;
}

h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  line-height: 1.15;
  margin: 3rem 0 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  margin: 1.75rem 0 0.4rem;
  color: var(--park);
}

/* --- Marquee: the date block, styled like a club sign --------------------- */

.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 1.5rem 1.75rem;
  margin: 0 0 2rem;
}
.marquee p { margin: 0; }
.marquee-date {
  font-family: var(--display);
  font-size: clamp(1.5rem, 4.5vw, 2.4rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.marquee-venue {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e6ded0;
  margin-top: 0.35rem;
}

/* --- Body text ------------------------------------------------------------ */

p { max-width: var(--measure); }

.lede {
  font-size: 1.3rem;
  line-height: 1.5;
  max-width: 40rem;
}

/* --- Buttons -------------------------------------------------------------- */

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: none;
  margin: 2rem 0 2.5rem;
}

.btn {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.9rem 1.4rem;
  border: 3px solid var(--ink);
}
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }
.btn-secondary { background: transparent; color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--paper); }

/* --- Promo image ---------------------------------------------------------- */

.promo { margin: 2.5rem 0; }
.promo img {
  display: block;
  width: 100%;
  height: auto;
  border: 4px solid var(--ink);
}
.promo figcaption {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  font-style: italic;
  color: #55504a;
}

/* --- Sponsorship block ---------------------------------------------------- */

.sponsor {
  background: var(--sky);
  padding: 0.25rem 1.5rem 1.5rem;
  margin-top: 3rem;
}
.sponsor h2 { border-top: none; }

/* --- Footer --------------------------------------------------------------- */

.site-footer {
  border-top: 4px solid var(--ink);
  margin-top: 4rem;
  padding: 1.75rem 0 3rem;
  font-size: 0.95rem;
  color: #55504a;
}

/* --- Motion preference ---------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* --- Eyebrow above the h1 ------------------------------------------------- */

.eyebrow {
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 2.5rem 0 0;
}
.eyebrow + h1 { margin-top: 0.4rem; }

/* --- Showtimes line inside the marquee ------------------------------------ */

.marquee-times {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid #4a443d;
  font-size: 1rem;
  color: #e6ded0;
}

/* --- Ticket list ---------------------------------------------------------- */

ul.tickets {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  max-width: var(--measure);
}
ul.tickets li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--rule);
}

/* --- Photo strip ---------------------------------------------------------- */

ul.photo-strip {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.75rem;
}
ul.photo-strip figure { margin: 0; }
ul.photo-strip img {
  display: block;
  width: 100%;
  height: auto;
  border: 3px solid var(--ink);
  background: var(--sky);
}
ul.photo-strip li { align-self: start; }
ul.photo-strip figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #55504a;
}

/* --- Footer disclosure ---------------------------------------------------- */

.disclosure {
  font-size: 0.9rem;
  font-style: italic;
  max-width: 44rem;
}

/* --- Venue block ---------------------------------------------------------- */

.venue-logo { margin: 1.25rem 0 0.75rem; }
.venue-logo img {
  display: block;
  width: 100%;
  max-width: 16rem;
  height: auto;
}
.venue-address { line-height: 1.7; }
