/* ==============================================================
   Konevych FDC — Venue page
   Extends the .bull namespace and tokens from bulls-home.css
   ============================================================== */

.bull-venue h2 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: var(--t-h2c);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--ink);
}

/* ---- hero: the map is the ground, the venue card rides on it ---- */
.bull-venue-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(560px, calc(80vh - 72px), 820px);
  isolation: isolate;
}
.bull-venue-map {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--canvas-2);
}
.bull-venue-map-canvas,
.bull-venue-map-embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
/* the keyless embed can't take our map style; pull its colour back toward the page */
.bull-venue-map-embed {
  position: absolute;
  inset: 0;
  filter: saturate(0.5);
  pointer-events: none;
}
.bull-venue-map-link { position: absolute; inset: 0; z-index: 1; cursor: pointer; }
.bull .bull-venue-map-link:focus-visible { outline-offset: -6px; }

.bull-venue-hero-shell {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding: var(--s48) var(--gx);
  /* the map stays draggable everywhere the card is not */
  pointer-events: none;
}
.bull-venue-card {
  pointer-events: auto;
  width: min(460px, 100%);
  padding: clamp(var(--s24), 1rem + 2vw, var(--s40));
  background: var(--navy);
  color: var(--on-navy);
  border-radius: var(--r);
  box-shadow: 0 18px 36px -18px oklch(23% 0.075 264 / 0.55);
}

.bull-venue-crumb {
  display: flex;
  gap: var(--s8);
  align-items: center;
  font-size: var(--t-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-navy-3);
}
.bull .bull-venue-crumb a { color: var(--on-navy-2); text-decoration: none; }
.bull .bull-venue-crumb a:hover { color: var(--orange); }

.bull-venue-card h1 {
  margin-top: var(--s16);
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(2.3rem, 1.7rem + 2.2vw, 3.6rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}
.bull-venue-card-address {
  margin-top: var(--s16);
  font-style: normal;
  font-size: var(--t-sm);
  line-height: 1.5;
  color: var(--on-navy-2);
}

.bull-venue-card-facts {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s16) var(--s24);
  margin-top: var(--s24);
  padding-top: var(--s24);
  border-top: 1px solid var(--hair-d);
}
.bull-venue-card-facts dt {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.bull-venue-card-facts dd {
  margin-top: var(--s4);
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}
.bull-venue-card-facts dd small {
  display: block;
  margin-top: var(--s4);
  font-family: var(--fb);
  font-weight: 400;
  font-size: var(--t-xs);
  letter-spacing: 0.02em;
  color: var(--on-navy-3);
}

.bull-venue-card-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s12);
  margin-top: var(--s32);
}
.bull-venue-card-cta .bull-btn { flex: 1 1 auto; justify-content: center; }

/* ---- the club pin: bull mark in a navy disc, gold ring, one drop on arrival ---- */
.bull-venue-pin {
  position: absolute;
  display: block;
  width: 64px;
  height: 78px;
  transform: translate(-50%, -100%);
  cursor: pointer;
}
.bull-venue-pin--static { left: 50%; top: 50%; z-index: 2; }
.bull-venue-pin.is-dropping { animation: bull-venue-pin-drop 700ms var(--ease) both; }
@keyframes bull-venue-pin-drop {
  0%   { opacity: 0; transform: translate(-50%, calc(-100% - 36px)); }
  60%  { opacity: 1; transform: translate(-50%, calc(-100% + 3px)); }
  100% { opacity: 1; transform: translate(-50%, -100%); }
}
.bull-venue-pin-head {
  position: absolute;
  inset: 0 0 auto;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--on-navy);
  --logo-accent: var(--orange);
  box-shadow: 0 0 0 3px var(--orange), 0 12px 24px -8px oklch(23% 0.075 264 / 0.6);
  transition: transform var(--t2) var(--ease);
}
.bull-venue-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 14px;
  height: 14px;
  background: var(--orange);
  transform: translateX(-50%) rotate(45deg);
  z-index: -1;
}
.bull-venue-pin-mark { width: 36px; height: auto; }
/* contact shadow under the tip, so the pin stands on the map rather than floating */
.bull-venue-pin::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 24px;
  height: 7px;
  border-radius: 50%;
  background: oklch(23% 0.075 264 / 0.35);
  filter: blur(2px);
  transform: translateX(-50%);
  z-index: -2;
}
.bull-venue-pin:hover .bull-venue-pin-head,
.bull-venue-pin:focus-visible .bull-venue-pin-head { transform: scale(1.06); }
.bull .bull-venue-pin:focus-visible { outline-offset: 6px; border-radius: 50%; }

/* ---- weekly sessions ---- */
.bull-venue-sessions { padding-block: var(--band) calc(var(--band) * 0.75); }
.bull-venue-days {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s24) var(--s40);
  margin-top: var(--s48);
}
.bull-venue-day h3 {
  padding-bottom: var(--s12);
  border-bottom: 2px solid var(--ink);
  font-family: var(--fd);
  font-weight: 700;
  font-size: var(--t-h3);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.bull-venue-day ul { padding: 0; }
.bull-venue-day li {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s4) var(--s16);
  padding-block: var(--s16);
  border-bottom: 1px solid var(--line);
}
.bull-venue-time {
  grid-column: 1;
  font-family: var(--fd);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.bull-venue-group { grid-column: 1; font-size: var(--t-sm); color: var(--ink-2); }
.bull-venue-group small { margin-left: var(--s4); color: var(--ink-3); }
.bull-venue-pitch {
  grid-column: 1;
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.bull-venue-next {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  padding: 5px 9px;
  border-radius: var(--r);
  background: var(--orange);
  color: var(--on-orange);
  font-family: var(--fd);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bull-venue-empty {
  margin-top: var(--s32);
  max-width: 54ch;
  font-size: var(--t-lead);
  line-height: 1.5;
  color: var(--ink-2);
}

/* ---- coaches ---- */
.bull-venue-coaches { padding-block: 0 var(--band); }
.bull-venue-coach-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s32) var(--s40);
  margin-top: var(--s48);
  padding: 0;
}
.bull-venue-coach {
  list-style: none;
  display: flex;
  gap: var(--s24);
  align-items: flex-start;
}
.bull-venue-coach img {
  flex: none;
  width: 104px;
  height: 130px;
  object-fit: cover;
  border-radius: var(--r);
}
.bull-venue-coach h3 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: var(--t-h3);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.bull-venue-coach-role {
  margin-top: var(--s8);
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.bull-venue-coach-cred {
  margin-top: var(--s12);
  font-size: var(--t-sm);
  line-height: 1.55;
  color: var(--ink-2);
}

/* ---- getting there ---- */
.bull-venue-find {
  padding-block: calc(var(--band) * 0.75);
  background: var(--canvas-2);
  border-top: 1px solid var(--line);
}
.bull-venue-find-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--s32) var(--s64);
  align-items: end;
}
.bull-venue-address {
  margin-top: var(--s24);
  font-style: normal;
  font-size: var(--t-lead);
  line-height: 1.5;
  color: var(--ink);
}
.bull-venue-note {
  margin-top: var(--s12);
  max-width: 60ch;
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--ink-2);
}
.bull-venue-find-cta { display: flex; flex-wrap: wrap; gap: var(--s12); }

/* ---- phones: map on top, the card rises over its lower edge ---- */
@media (max-width: 899px) {
  .bull-venue-hero { display: block; min-height: 0; }
  .bull-venue-map { position: relative; z-index: 0; height: max(280px, 46vh); }
  /* no overlap here: Google's logo and attribution sit on the map's bottom edge and must stay visible */
  .bull-venue-hero-shell { position: relative; padding: 0; }
  .bull-venue-card { width: 100%; border-radius: 0; box-shadow: none; }
  .bull-venue-find-grid { grid-template-columns: 1fr; align-items: start; }
  .bull-venue-find-cta { flex-direction: column; }
  .bull-venue-find-cta .bull-btn { justify-content: center; }
}
@media (max-width: 420px) {
  .bull-venue-card-facts { grid-template-columns: 1fr 1fr; }
  .bull-venue-fact--next { grid-column: 1 / -1; grid-row: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .bull-venue-pin.is-dropping { animation: none; }
}
