@import url('https://fonts.googleapis.com/css2?family=Momo+Trust+Display:wght@700&family=Fredoka:wght@700&display=swap');

.site-logo {
  font-family: 'Momo Trust Display', 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.6rem !important;
  display: inline-block;
  transform: rotate(-3deg);
  text-decoration: none !important;
  line-height: 1;
  letter-spacing: 0.01em;
}

:root {
  --jam-chart-color: #e91e63;
  --cal-accent: #0d6efd;
  --cal-bg: #111;
  --cal-border: #333
}

body {
  padding-bottom: 56px
}

.jam-chart {
  color: var(--jam-chart-color)
}

.badge-jam {
  background-color: #ff69b4;
  color: #111;
}

/* Fixed footer styling */
footer.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1030;
  /* above content */
  background: rgba(17, 17, 17, 0.95);
  border-top: 1px solid #333;
  padding: 6px 12px;
}

.setlist-item-highlight {
  position: relative;
  border: 2px solid rgba(255, 193, 7, .6) !important;
  background: rgba(255, 193, 7, .08)
}

@keyframes hl {
  0% {
    background: rgba(255, 193, 7, .25)
  }

  100% {
    background: transparent
  }
}

/* Calendar card in show header */
.calendar-card {
  width: 84px;
  border: 1px solid var(--cal-border);
  border-radius: .5rem;
  overflow: hidden;
  background: var(--cal-bg)
}

.calendar-card .cal-month {
  background: var(--cal-accent);
  color: #fff;
  font-weight: 600;
  padding: .2rem .4rem;
  text-transform: uppercase;
  letter-spacing: .06em
}

.calendar-card .cal-day {
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 700;
  padding: .35rem 0
}

.calendar-card .cal-dow {
  font-size: .8rem;
  padding: .15rem 0 .35rem
}

/* Stat chips used on show header */
.stats-row {
  flex-wrap: nowrap !important;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1c1c1c, #151515);
  border: 1px solid #2f2f2f;
  white-space: nowrap;
}

.stat-chip i {
  color: #9ad0ff;
}

.stat-chip .count {
  font-weight: 700;
  color: #f1f1f1;
}

.stat-chip .label {
  color: #a9a9a9;
  font-size: 0.8rem;
}

.stat-chip .meta {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
  white-space: nowrap;
}