:root {
  --bg: #090411;
  --bg-soft: #160822;
  --panel: rgba(18, 18, 32, 0.94);
  --panel-strong: rgba(24, 22, 42, 0.98);
  --text: #ffffff;
  --muted: #d8c9e8;
  --primary: #a855f7;
  --primary-strong: #d946ef;
  --cyan: #22d3ee;
  --border: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 20px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(9, 4, 17, 0.92), rgba(9, 4, 17, 0.92)),
    url("../imgs/e90s-dancer-logo-small.jpg"),
    radial-gradient(circle at top left, #3b0764 0, transparent 34rem);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center, center 18vh, top left;
  background-size: auto, min(650px, 80vw), auto;
  background-attachment: fixed, fixed, scroll;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(217, 70, 239, 0.07));
  z-index: -1;
}

a {
  color: inherit;
}

img,
video {
  max-width: 100%;
  display: block;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 0.75rem 1rem;
  z-index: 999;
  background: var(--cyan);
  color: #021014;
}

.site-header {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, .48), rgba(0, 0, 0, .48));
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(8, 2, 14, 0.86);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-menu a {
  padding: 0.65rem 0.8rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 650;
  border-radius: 999px;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--text);
  background: var(--panel);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  color: var(--text);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: auto;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.nav-toggle-bars::before {
  transform: translateY(-7px);
}

.nav-toggle-bars::after {
  transform: translateY(5px);
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 7rem 1rem 4rem;
  text-align: center;
}

.hero-tagline {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
}

.hero-content,
.section {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.25rem;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0.35rem;
  font-size: clamp(3.2rem, 12vw, 7.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(217, 70, 239, 0.45);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.35rem;
}

.hero-subtitle {
  width: min(700, 92%);
  margin: 0 auto 1.4rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

.hero-logo {
  width: min(240px, 30%);
  margin: 0 auto 1.2rem;
  filter: drop-shadow(0 0 28px rgba(217, 70, 239, .28));
}

.hero-video-wrap {
  width: min(854px, 100%);
  margin: 1.2rem auto 1rem;
  padding: 0.25rem;
  background: linear-gradient(135deg, var(--cyan), var(--primary-strong));
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-video-wrap video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background-color: #000;
  border-radius: var(--radius);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button i,
.messenger-float i {
  margin-right: 0.45rem;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, rgba(14, 31, 58, 0.96), rgba(18, 56, 88, 0.92));
  border-color: rgba(34, 211, 238, 0.42);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.14);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(34, 211, 238, 0.26);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.08);
}

.button:hover,
.button:focus {
  border-color: rgba(34, 211, 238, 0.65);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.18);
  transform: translateY(-1px);
}

.button i {
  color: #fff;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 1rem;
}

.section-tight {
  padding-bottom: 2rem;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.setlist,
.formats,
.socials,
.reviews,
.contact {
  text-align: center;
}

.playlist-board {
  width: min(980px, 100%);
  margin: 1.75rem auto 0;
  padding: 0.55rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(217, 70, 239, 0.08));
  box-shadow: var(--shadow);
}

.playlist-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  min-height: 48px;
  padding: 0.55rem 0.75rem;
  border-radius: 16px;
}

.playlist-row+.playlist-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.playlist-row:hover {
  background: rgba(255, 255, 255, 0.07);
}

.track-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.35);
  font-size: 0.78rem;
}

.track-title {
  color: var(--text);
  font-size: 1rem;
  font-weight: 850;
  text-align: left;
}

.track-note {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}


.card {
  padding: 1.25rem;
  color: var(--muted);
}

.card h3 {
  color: var(--text);
}

.social-cards .card {
  text-decoration: none;
}

.social-card-icon {
  display: block;
  margin: 0 auto 0.9rem;
  color: var(--cyan);
  font-size: 2.2rem;
}

.social-icon-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 4vw, 3rem);
  margin-top: 2rem;
}

.social-icon-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 120px;
  color: var(--text);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 850;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 50%;
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.3), rgba(217, 70, 239, 0.18));
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.18);
  font-size: 2.15rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-icon-link:hover .social-icon,
.social-icon-link:focus .social-icon {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(217, 70, 239, 0.75);
  box-shadow: 0 0 34px rgba(217, 70, 239, 0.28);
}

@media (max-width: 560px) {
  .social-icon-links {
    gap: 1.25rem;
  }

  .social-icon-link {
    min-width: 110px;
  }

  .social-icon {
    width: 68px;
    height: 68px;
    font-size: 1.75rem;
  }
}

.gallery-section {
  background: rgba(0, 0, 0, 0.08);
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(100%, var(--max-width));
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  text-decoration: none;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transition: transform .25s ease, opacity .25s ease;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  font-size: 1.55rem;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.26);
}

.video-thumb:hover img,
.video-thumb:focus img {
  opacity: 1;
  transform: scale(1.035);
}

.video-card-copy {
  padding: 1rem;
}

.video-card-copy h3 {
  margin-bottom: 0.35rem;
}

.video-card-copy p {
  margin-bottom: 0.7rem;
  color: var(--muted);
}

.video-card-copy a {
  color: var(--cyan);
  font-weight: 800;
  text-decoration: none;
}

.video-card-copy a:hover,
.video-card-copy a:focus {
  text-decoration: underline;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.quote p {
  color: var(--text);
}

.quote cite {
  color: var(--cyan);
  font-style: normal;
  font-weight: 800;
}

.contact p {
  width: min(720px, 100%);
  margin-inline: auto;
  color: var(--muted);
}

.site-footer {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--muted);
  background: #050208;
  border-top: 1px solid var(--border);
}

.site-footer p {
  margin-bottom: 0.45rem;
}

.site-footer a {
  color: var(--cyan);
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: rgba(8, 2, 14, 0.96);
    border-bottom: 1px solid var(--border);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    text-align: center;
    padding: 0.9rem 1rem;
    border-radius: 12px;
  }

  .section-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .video-gallery {
    grid-template-columns: 1fr;
  }

  .playlist-board {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .brand span {
    font-size: 0.9rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .navbar {
    padding-inline: 0.75rem;
  }

  .hero {
    padding-top: 6.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .playlist-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .track-note {
    grid-column: 2;
    text-align: left;
    white-space: normal;
  }
}

.shows {
  width: min(100%, 1320px);
  text-align: center;
}

.shows-intro {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.shows-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem 1.5rem;
  margin-top: 1.4rem;
  text-align: left;
}

.show-month {
  min-width: 0;
}

.show-month h3 {
  margin: 0 0 0.35rem;
  padding-bottom: 0.35rem;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(34, 211, 238, 0.28);
}

.show-row {
  display: grid;
  grid-template-columns: 4.2rem minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 0.65rem;
  min-height: 34px;
  padding: 0.38rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.show-row .show-date {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.show-row strong {
  color: var(--text);
  line-height: 1.18;
}

.show-row span:last-child {
  color: var(--muted);
  font-size: 0.86rem;
}

.private-show strong {
  color: var(--primary-strong);
}

.formats-intro {
  width: min(720px, 100%);
  margin: 0 auto 2rem;
  color: var(--muted);
}

.lineup-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.lineup-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
  text-align: left;
}

.lineup-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform .35s ease;
}

.lineup-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5, 2, 8, 0.92), rgba(5, 2, 8, 0.18) 58%, rgba(5, 2, 8, 0.04)),
    radial-gradient(circle at bottom left, rgba(34, 211, 238, 0.18), transparent 18rem);
  pointer-events: none;
}

.lineup-photo-card:hover img,
.lineup-photo-card:focus-within img {
  transform: scale(1.035);
}

.lineup-photo-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.25rem;
}

.lineup-label {
  margin-bottom: 0.35rem;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lineup-photo-copy h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.lineup-photo-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.lineup-photo-wide {
  grid-column: 1 / -1;
  min-height: 360px;
}

.lineup-photo-wide img {
  min-height: 360px;
}

@media (max-width: 1150px) {
  .lineup-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lineup-photo-wide {
    grid-column: auto;
  }
}

@media (max-width: 1000px) {

  .shows-board,
  .lineup-photo-grid {
    grid-template-columns: 1fr;
  }

  .show-row {
    grid-template-columns: 4rem minmax(0, 1fr);
  }

  .show-row span:last-child {
    grid-column: 2;
  }
}

@media (max-width: 520px) {
  .show-row {
    grid-template-columns: 1fr;
    gap: 0.1rem;
    padding: 0.75rem 0;
  }

  .show-row span:last-child {
    grid-column: auto;
  }
}

.messenger-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #0ea5e9, var(--cyan));
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 18px rgba(34, 211, 238, .24);
  transition: .2s;
}

.messenger-float:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .messenger-float {
    bottom: 15px;
    right: 15px;
    padding: 12px 16px;
    font-size: .9rem;
  }
}

/* Line-up photo cards: show full band images without cropping */
.lineup-photo-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.10), transparent 16rem),
    rgba(18, 18, 32, 0.94);
}

.lineup-photo-card img {
  width: 100%;
  height: clamp(250px, 24vw, 360px);
  min-height: 0;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(9, 4, 17, 0.85), rgba(22, 8, 34, 0.92));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.35rem;
}

.lineup-photo-card::after {
  display: none;
}

.lineup-photo-card:hover img,
.lineup-photo-card:focus-within img {
  transform: none;
}

.lineup-photo-copy {
  position: static;
  z-index: auto;
  padding: 1.15rem;
}

.lineup-photo-wide img {
  height: clamp(300px, 34vw, 520px);
}

@media (max-width: 760px) {

  .lineup-photo-card img,
  .lineup-photo-wide img {
    height: auto;
    max-height: none;
  }
}



/* Background balance: keep atmosphere visible, but make content panels readable */
.card,
.playlist-board,
.lineup-photo-card,
.social-cards .card {
  background-color: var(--panel);
}

.lineup-photo-copy {
  background: rgba(18, 18, 32, 0.96);
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.video-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
}

.video-wrap {
  aspect-ratio: 16/9;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-copy {
  padding: 1rem;
}

.video-copy h3 {
  margin-bottom: .4rem;
}

.video-copy p {
  color: var(--muted);
  margin-bottom: 0;
}

@media (max-width:1000px) {
  .video-gallery {
    grid-template-columns: 1fr;
  }
}

/* Optional add-on cards */
.addon-heading {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.addon-heading .formats-intro {
  margin-bottom: 1.2rem;
}

.addon-photo-grid {
  margin-top: 1.2rem;
}

.addon-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  padding: 0;
  background: #050208;
}

.addon-card .lineup-photo-copy {
  min-height: 210px;
}

@media (max-width: 1000px) {
  .addon-card .lineup-photo-copy {
    min-height: 0;
  }
}
