@import url('https://fonts.googleapis.com/css2?family=Anton&family=Great+Vibes&family=Inter:wght@400;500;600;700&family=Special+Elite&display=swap');

.bmm-shows {
  position: relative;
  overflow: hidden;
  padding: 88px 24px 96px;
  background: #120c08;
  color: #ece2d4;
  font-family: 'Inter', system-ui, sans-serif;
}

.bmm-shows-grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: url('https://grainy-gradients.vercel.app/noise.svg');
}

.bmm-shows-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.bmm-shows-glow--amber {
  width: 480px;
  height: 480px;
  right: -140px;
  top: -80px;
  background: radial-gradient(circle, rgba(232, 160, 48, 0.16), transparent 70%);
}

.bmm-shows-glow--rose {
  width: 420px;
  height: 420px;
  left: -120px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.18), transparent 70%);
}

.bmm-shows-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.bmm-shows-head {
  text-align: center;
  margin-bottom: 32px;
}

.bmm-shows-label {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c6a27a;
}

.bmm-shows-title {
  margin: 0 0 12px;
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff4e0;
  text-shadow: 0 0 24px rgba(232, 160, 48, 0.25);
}

.bmm-shows-sub {
  margin: 0 auto;
  max-width: 540px;
  font-size: 15px;
  line-height: 1.65;
  color: #a89078;
}

.bmm-shows-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}

.bmm-shows-tab {
  min-height: 44px;
  padding: 10px 22px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c6a27a;
  background: transparent;
  border: 1px solid rgba(198, 162, 122, 0.3);
  border-radius: 2px;
  cursor: pointer;
}

.bmm-shows-tab.is-active {
  color: #120c08;
  background: linear-gradient(180deg, #ddb889, #c9943a);
  border-color: #c9943a;
  box-shadow: 0 4px 0 #8a6428;
}

.bmm-shows-panel {
  display: none;
}

.bmm-shows-panel.is-active {
  display: block;
}

.bmm-shows-empty {
  margin: 0;
  padding: 36px 20px;
  text-align: center;
  color: #a89078;
  border: 1px dashed rgba(198, 162, 122, 0.28);
  border-radius: 8px;
}

.bmm-shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 240px));
  justify-content: center;
  gap: 18px;
}

.bmm-show-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bmm-show-card:hover {
  transform: translateY(-6px);
}

.bmm-show-card--mckinleigh {
  background: linear-gradient(180deg, #fff8f5, #faf0f2);
  border: 1px solid rgba(232, 180, 184, 0.45);
  box-shadow: 0 16px 40px rgba(107, 58, 74, 0.12);
}

.bmm-show-card--jake,
.bmm-show-card--shared {
  background: linear-gradient(180deg, #1a120c, #120c08);
  border: 1px solid rgba(198, 162, 122, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.bmm-show-flyer-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #0a0604;
  cursor: pointer;
  overflow: hidden;
}

.bmm-show-flyer {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.bmm-show-card:hover .bmm-show-flyer {
  transform: scale(1.04);
}

.bmm-show-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #120c08;
  background: #c6a27a;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.bmm-show-promo-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(45, 37, 32, 0.88);
  border: 1px solid rgba(198, 162, 122, 0.45);
  border-radius: 999px;
}

.bmm-show-date--promo .bmm-show-day {
  font-size: 18px;
  line-height: 1;
}

.bmm-show-card:hover .bmm-show-zoom {
  opacity: 1;
}

@media (hover: none) {
  .bmm-show-zoom {
    opacity: 1;
  }
}

.bmm-show-card-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 14px 14px;
}

.bmm-show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}

.bmm-show-month {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #c6a27a;
}

.bmm-show-day {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  line-height: 1;
  color: #fff4e0;
}

.bmm-show-card--mckinleigh .bmm-show-day {
  color: #6b3a4a;
}

.bmm-show-year {
  font-size: 10px;
  color: #a89078;
}

.bmm-show-artist {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c6a27a;
}

.bmm-show-card--mckinleigh .bmm-show-artist {
  color: #b76e79;
}

.bmm-show-title {
  margin: 0 0 4px;
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #fff4e0;
}

.bmm-show-card--mckinleigh .bmm-show-title {
  font-family: 'Great Vibes', cursive;
  font-size: 22px;
  letter-spacing: 0;
  color: #6b3a4a;
}

.bmm-show-meta {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #a89078;
}

.bmm-show-card--mckinleigh .bmm-show-meta {
  color: #9a8085;
}

.bmm-show-tickets {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
  min-height: 36px;
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #120c08;
  background: linear-gradient(180deg, #ddb889, #c9943a);
  border-radius: 2px;
  white-space: nowrap;
}

.bmm-show-card--mckinleigh .bmm-show-tickets {
  color: #fff;
  background: linear-gradient(135deg, #c9787e, #b76e79);
}

/* Lightbox */
.bmm-shows .bmm-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 6, 4, 0.92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.bmm-shows .bmm-gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bmm-shows .bmm-gallery-lightbox-img {
  max-width: min(92vw, 720px);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.bmm-shows .bmm-gallery-close,
.bmm-shows .bmm-gallery-nav {
  position: absolute;
  border: 0;
  background: rgba(198, 162, 122, 0.15);
  color: #fff4e0;
  cursor: pointer;
}

.bmm-shows .bmm-gallery-close {
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  font-size: 28px;
  border-radius: 4px;
}

.bmm-shows .bmm-gallery-nav {
  top: 50%;
  width: 48px;
  height: 48px;
  font-size: 28px;
  border-radius: 4px;
  transform: translateY(-50%);
}

.bmm-shows .bmm-gallery-prev { left: 16px; }
.bmm-shows .bmm-gallery-next { right: 16px; }

@media (max-width: 780px) {
  .bmm-shows {
    padding: 64px 16px 72px;
  }

  .bmm-shows-grid {
    grid-template-columns: minmax(0, 260px);
    justify-content: center;
  }
}
