/* ===== Lineup Page Section — mirrors home page lineup-section design ===== */

.lp-section {
  padding: 127px 0 0;
}

/* Frame card */
.lp-card {
  position: relative;
  z-index: 1;
  background-size: 100% !important;
  background: url(../images/frame-body.png) repeat-y top left;
  padding-right: 20px;
  padding-bottom: 0;
}

.lp-card::before {
  position: absolute;
  left: 0;
  top: -28px;
  width: 100%;
  height: 37px;
  background-size: 100% !important;
  background: url(../images/frame-top.png) no-repeat top left;
  content: "";
  z-index: -1;
}

.lp-card::after {
  position: absolute;
  left: 0;
  bottom: -37px;
  width: 100%;
  height: 37px;
  background-size: 100% !important;
  background: url(../images/frame-two.png) no-repeat top left;
  content: "";
  z-index: -1;
}

/* Section title image */
.lp-text-title {
  margin-top: -96px;
  position: relative;
}

/* Day block */
.lp-day-block {
  margin-top: -5%;
}

.lp-rotatehead {
  transform: rotate(355deg);
  -webkit-transform: rotate(355deg);
  -moz-transform: rotate(355deg);
  -ms-transform: rotate(355deg);
  -o-transform: rotate(355deg);
}

/* Day title (e.g. "Saturday") */
.lp-day-title {
  font-family: "Monday-Groovy";
  font-size: 108px;
  text-transform: uppercase;
  text-align: center;
  line-height: 0.5;
  margin-bottom: 4px;
  -webkit-text-stroke: 18px var(--cream);
  paint-order: stroke fill;
  text-shadow:
    -3px -3px 0 #fff,
    3px -3px 0 var(--cream),
    -3px 3px 0 var(--cream),
    3px 3px 0 var(--cream),
    0px -8px 0 var(--cream),
    0px 8px 0 var(--cream),
    -8px 0px 0 var(--cream),
    8px 0px 0 var(--cream);
}

/* Venue subtitle */
.lp-day-venue {
  font-family: "Monday-Groovy";
  font-size: 38px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
  -webkit-text-stroke: 7px var(--cream);
  paint-order: stroke fill;
  text-shadow:
    -3px -3px 0 var(--cream),
    3px -3px 0 var(--cream),
    -3px 3px 0 var(--cream),
    3px 3px 0 var(--cream),
    0px -8px 0 var(--cream),
    0px 8px 0 var(--cream),
    -8px 0px 0 var(--cream),
    8px 0px 0 var(--cream);
}

/* Stage column */
.lp-stage {
  text-align: center;
}

.lp-stage svg {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  transform: rotate(355deg);
  -webkit-transform: rotate(355deg);
  -moz-transform: rotate(355deg);
  -ms-transform: rotate(355deg);
  -o-transform: rotate(355deg);
  position: relative;
  left: 0;
  z-index: 0;
}

/* Band list */
.lp-band-list {
  list-style: none;
  padding: 40px 0 0;
  margin: -15px 0 30px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-band-list li {
  position: relative;
  font-family: "Monday-Groovy";
  font-size: 48px;
  line-height: 1.2;
  text-transform: uppercase;
  padding: 0 0 15px;
  -webkit-text-stroke: 12px #fff;
  paint-order: stroke fill;
  text-shadow:
    -3px -3px 0 #fff,
    3px -3px 0 #fff,
    -3px 3px 0 #fff,
    3px 3px 0 #fff,
    0px -8px 0 #fff,
    0px 8px 0 #fff,
    -8px 0px 0 #fff,
    8px 0px 0 #fff;
  cursor: default;
  transition: transform 0.3s ease, color 0.3s ease, -webkit-text-stroke-color 0.3s ease;
}

.lp-band-list li:hover {
  color: #fff;
  -webkit-text-stroke-color: var(--ink);
  transform: scale(1.05) rotate(-1.5deg);
  z-index: 10;
  text-shadow:
    -3px -3px 0 var(--ink),
    3px -3px 0 var(--ink),
    -3px 3px 0 var(--ink),
    3px 3px 0 var(--ink),
    0px -8px 0 var(--ink),
    0px 8px 0 var(--ink),
    -8px 0px 0 var(--ink),
    8px 0px 0 var(--ink);
}

/* Tooltip — default: right side */
.lp-tooltip {
  position: absolute;
  left: 100%;
  top:20px;
  transform: translateY(-40%);
  margin-left: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink, #1a1a1a);
  padding: 8px 16px;
  border-radius: 30px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 10;
  white-space: nowrap;
}

/* Arrow pointing left (right-side tooltip) */
.lp-tooltip::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: var(--ink, #1a1a1a);
}

/* Invisible bridge so the mouse can cross the gap between li and tooltip without losing hover */
.lp-tooltip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 14px;
  background: transparent;
}

/* Tooltip — left side variant */
.lp-tooltip-left {
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-right: 10px;
}

/* Arrow pointing right (left-side tooltip) */
.lp-tooltip-left::before {
  right: auto;
  left: 100%;
  top: 50%;
  border-right-color: transparent;
  border-left-color: var(--ink, #1a1a1a);
}

/* Bridge on the right side for left-variant tooltip */
.lp-tooltip-left::after {
  right: auto;
  left: 100%;
}

.lp-band-list li:hover .lp-tooltip,
.lp-band-list li .lp-tooltip:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lp-tooltip a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #b5781f;
  color: var(--cream, #ece1d2);
  font-size: 16px;
  text-decoration: none;
  -webkit-text-stroke: 0;
  text-shadow: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.lp-tooltip a:hover {
  background: #fff;
  color: var(--ink, #1a1a1a);
  transform: translateY(-2px) scale(1.08);
}

/* ==========================================================================
   Lineup Page — Responsive
   ========================================================================== */

@media only screen and (max-width: 1440px) {
  .lp-section { padding-top: 100px; }
  .lp-text-title { margin-top: -80px; }
  .lp-day-title { font-size: 90px; -webkit-text-stroke-width: 15px; }
  .lp-day-venue { font-size: 32px; -webkit-text-stroke-width: 6px; }
  .lp-band-list li { font-size: 40px; -webkit-text-stroke-width: 10px; }
  .lp-card { padding-right: 16px; }
  .lp-card::before { top: -24px; }
}

@media only screen and (max-width: 1200px) {
  .lp-section { padding-top: 80px; }
  .lp-text-title { margin-top: -68px; }
  .lp-day-title { font-size: 76px; -webkit-text-stroke-width: 13px; }
  .lp-day-venue { font-size: 28px; -webkit-text-stroke-width: 5px; }
  .lp-band-list li { font-size: 34px; -webkit-text-stroke-width: 8px; }
}

@media only screen and (max-width: 1024px) {
  .lp-section { padding-top: 65px; }
  .lp-text-title { margin-top: -58px; }
  .lp-day-title { font-size: 64px; -webkit-text-stroke-width: 11px; }
  .lp-day-venue { font-size: 24px; -webkit-text-stroke-width: 5px; }
  .lp-band-list li { font-size: 28px; -webkit-text-stroke-width: 7px; }
  .lp-band-list { padding-top: 30px; margin-bottom: 20px; }
  .lp-card::before { top: -22px; }
}

@media only screen and (max-width: 991px) {
  .lp-section { padding-top: 55px; }
  .lp-text-title { margin-top: -48px; }
  .lp-day-block { margin-top: 0; }
  .lp-day-title { font-size: 56px; -webkit-text-stroke-width: 10px; }
  .lp-day-venue { font-size: 22px; -webkit-text-stroke-width: 4px; margin-bottom: 16px; }
  .lp-band-list li { font-size: 26px; -webkit-text-stroke-width: 6px; }
  .lp-band-list { padding-top: 24px; margin-bottom: 16px; }
  .lp-rotatehead { transform: none; }
  .lp-stage svg { transform: none; }
}

@media only screen and (max-width: 768px) {
  .lp-section { padding-top: 40px; }
  .lp-text-title { margin-top: -38px; }
  .lp-day-title { font-size: 48px; -webkit-text-stroke-width: 8px; }
  .lp-day-venue { font-size: 20px; -webkit-text-stroke-width: 4px; margin-bottom: 12px; }
  .lp-band-list li { font-size: 24px; -webkit-text-stroke-width: 5px; }
  .lp-band-list { padding-top: 20px; margin-bottom: 14px; }
  .lp-card { padding-right: 10px; }
  .lp-card::before { top: -18px; }
  .lp-card::after { bottom: -28px; }
}

@media only screen and (max-width: 575px) {
  .lp-section { padding-top: 30px; }
  .lp-text-title { margin-top: -30px; }
  .lp-day-title { font-size: 40px; -webkit-text-stroke-width: 7px; }
  .lp-day-venue { font-size: 18px; -webkit-text-stroke-width: 3px; margin-bottom: 10px; }
  .lp-band-list li { font-size: 22px; -webkit-text-stroke-width: 4px; padding-bottom: 10px; }
  .lp-band-list { padding-top: 16px; margin-bottom: 10px; }
  .lp-card { padding-right: 6px; }
  .lp-card::before { top: -12px; height: 14px; }
  .lp-card::after { bottom: -22px; height: 24px; }

  /* Stack the stage columns */
  .lp-section .stages .col-sm-6 { width: 100%; }
}

@media only screen and (max-width: 480px) {
  .lp-section { padding-top: 22px; }
  .lp-text-title { margin-top: -24px; }
  .lp-day-title { font-size: 34px; -webkit-text-stroke-width: 6px; }
  .lp-day-venue { font-size: 16px; -webkit-text-stroke-width: 3px; }
  .lp-band-list li { font-size: 20px; -webkit-text-stroke-width: 4px; }
  .lp-card { padding-right: 4px; }
  .lp-card::before { top: -10px; height: 11px; }
  .lp-card::after { bottom: -18px; height: 18px; }
}

@media only screen and (max-width: 390px) {
  .lp-day-title { font-size: 28px; -webkit-text-stroke-width: 5px; }
  .lp-day-venue { font-size: 14px; -webkit-text-stroke-width: 2px; }
  .lp-band-list li { font-size: 18px; -webkit-text-stroke-width: 3px; }
}

@media only screen and (max-width: 320px) {
  .lp-day-title { font-size: 24px; -webkit-text-stroke-width: 4px; }
  .lp-day-venue { font-size: 13px; }
  .lp-band-list li { font-size: 16px; -webkit-text-stroke-width: 3px; }
}
