/* Small disco-specific touches that go beyond the single theme accent. */
:root {
  --section-even-bg: #0f0917;
  --card-bg: #120b1b;
  --header-bg: color-mix(in srgb, #08050d 94%, transparent);
  --footer-bg: #08050d;
  --footer-fg: #fff8fd;
  --footer-link: #29b8ff;
}

.section__title {
  text-shadow: 0 0 18px color-mix(in srgb, #c9006b 45%, transparent);
}

.events__when { color: #29b8ff; }
.menu__cat-name { border-color: #ffd166; }
.gallery__fig img { border: 1px solid #4e2558; }

/* Logo mark: disco-ball-headed man in a Hawaiian-print tux, left of the name */
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }

/* Header: logo + name hard left, nav hard right (nav keeps its own spacing) */
.site-header__inner { justify-content: flex-start; }
.brand { margin-inline-end: auto; }
.brand__logo {
  height: 3.5rem; width: auto; display: block;
  filter: drop-shadow(0 0 10px color-mix(in srgb, #29b8ff 40%, transparent));
}
.brand__name { line-height: 1; }
@media (max-width: 30rem) {
  .brand__logo { height: 2.75rem; }
  .brand { gap: 0.45rem; }
}

/* ---------------------------------------------------------------------------
   "Under the Mirror Ball" + "Tonight's Questionable Plans" as a two-column row.
   Left column  : logo/photo on top, heading + prose stacked underneath.
   Right column : the events list, shrunk to sit within the left column's height.
   Below 60rem everything falls back to the normal stacked sections.
--------------------------------------------------------------------------- */
@media (min-width: 60rem) {
  #main {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    column-gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
  }
  #main > section { grid-column: 1 / -1; }
  #main > .about  { grid-column: 1; }
  #main > .events { grid-column: 2; }

  /* both halves share one dark band and one top edge */
  #main > .about,
  #main > .events {
    background: var(--bg);
    padding-block: clamp(3rem, 7vw, 5rem);
  }

  /* left: image above, text below, tighter */
  #main > .about .section__grid--split { grid-template-columns: 1fr; gap: 1.25rem; }
  #main > .about .section__media { order: -1; }
  #main > .about .section__media img {
    max-height: 15rem; width: auto; margin-inline: auto;
  }
  #main > .about .prose p { margin: 0 0 0.7rem; }

  /* right: same heading treatment, sized so the list fills the left column height */
  #main > .events .section__title { font-size: 1.35rem; margin-bottom: 1rem; }
  #main > .events .events__list { gap: 0.6rem; }
  #main > .events .events__item {
    padding: 0.6rem 0.85rem;
    gap: 0.15rem 1rem;
    grid-template-columns: 8rem 1fr;
    font-size: 0.88rem;
  }
  #main > .events .events__title { font-size: 0.95rem; }
  #main > .events .events__body p { font-size: 0.82rem; }
}
