@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Oswald:wght@400;600;700&display=swap');

:root {
  --pink: #ff2bd6;
  --cyan: #1eeaff;
  --orange: #ff9d00;
  --dark: #03020c;
  --panel: rgba(5, 3, 20, 0.95);
  --muted: #e8e2f7;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,43,214,0.25), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(30,234,255,0.18), transparent 28%),
    linear-gradient(180deg, #03020c, #070017 55%, #020109);
  color: white;
  font-family: Oswald, Arial, sans-serif;
}

.scanlines {
  position: fixed;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.028) 50%, rgba(0,0,0,0.028) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 200;
  mix-blend-mode: screen;
}

a { color: inherit; text-decoration: none; }

.site-frame {
  width: min(1580px, calc(100% - 14px));
  margin: 7px auto;
  border: 2px solid var(--pink);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(2,2,12,0.9);
  box-shadow: 0 0 18px var(--pink), inset 0 0 28px rgba(255,43,214,0.28);
}

.topbar {
  min-height: 74px;
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  gap: 20px;
  align-items: center;
  padding: 0 38px;
  border-bottom: 2px solid var(--pink);
  background: rgba(2,2,12,0.96);
  box-shadow: 0 0 18px rgba(255,43,214,0.65);
}

.brand, h1, h2, .hero-text-left, .hero-text-right, .label {
  font-family: Bangers, cursive;
}

.brand {
  font-size: 3.2rem;
  transform: skew(-7deg);
  color: white;
  text-shadow: 0 0 6px white, 0 0 18px var(--pink), 0 0 30px var(--pink);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav a:hover {
  color: var(--pink);
  text-shadow: 0 0 12px var(--pink);
}

.top-socials {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.top-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid currentColor;
  font-weight: 700;
  box-shadow: 0 0 14px currentColor;
}

.top-socials a:nth-child(1) { color: var(--cyan); }
.top-socials a:nth-child(2) { color: var(--pink); }
.top-socials a:nth-child(3) { color: #ff4a2f; }

.menu-toggle { display: none; }

.hero-banner {
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--pink);
  background: #05020f;
}

.hero-banner img {
  width: 100%;
  display: block;
  height: auto;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.08), transparent 20%, transparent 80%, rgba(0,0,0,0.08)),
    linear-gradient(180deg, transparent 72%, rgba(0,0,0,0.38));
}

.hero-text-left,
.hero-text-right {
  position: absolute;
  z-index: 5;
  text-transform: uppercase;
}

.hero-text-left {
  left: 3.5%;
  top: 19%;
  display: grid;
  gap: 3px;
  transform: rotate(-4deg);
  text-shadow: 0 0 8px white, 0 0 22px var(--pink), 0 0 36px var(--pink);
}

.hero-text-left span {
  font-size: clamp(1.5rem, 3.5vw, 3.6rem);
}

.hero-text-left strong {
  font-size: clamp(4rem, 9vw, 9.8rem);
  line-height: 0.75;
}

.hero-text-left em {
  color: var(--cyan);
  font-style: normal;
  font-size: clamp(1.7rem, 3.8vw, 4rem);
  text-shadow: 0 0 18px var(--cyan);
}

.hero-text-right {
  right: 5%;
  top: 30%;
  display: grid;
  gap: 6px;
  text-shadow: 0 0 10px white, 0 0 18px var(--pink);
}

.hero-text-right span,
.hero-text-right em {
  font-size: clamp(1.3rem, 2.3vw, 2.7rem);
  font-style: normal;
}

.hero-text-right strong {
  color: var(--pink);
  font-size: clamp(1.6rem, 3vw, 3.4rem);
  text-shadow: 0 0 18px var(--pink);
}

.hero-text-right a,
.small-btn,
.big-btn {
  display: inline-block;
  width: fit-content;
  border: 2px solid var(--pink);
  border-radius: 8px;
  background: rgba(0,0,0,0.42);
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 0 12px var(--pink), inset 0 0 14px rgba(255,43,214,0.35);
}

.hero-text-right a {
  margin-top: 18px;
  padding: 12px 28px;
  font-family: Oswald, Arial, sans-serif;
  font-size: clamp(0.85rem, 1.2vw, 1.15rem);
}

.small-btn { padding: 10px 24px; }

.big-btn {
  padding: 14px 42px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, rgba(255,43,214,0.88), rgba(255,157,0,0.9));
}

.triple-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.55fr 0.85fr;
  border-bottom: 2px solid var(--pink);
}

.panel {
  min-height: 310px;
  padding: 30px 40px;
  background: var(--panel);
  border-right: 1px solid rgba(255,43,214,0.72);
}

.panel:last-child { border-right: 0; }

.panel h2,
.booking-strip h2,
.feature-section h2,
.form-section h2 {
  margin: 0 0 18px;
  color: var(--pink);
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 0.92;
  text-shadow: 0 0 13px var(--pink);
  transform: rotate(-2deg);
}

.panel p,
.booking-strip p,
.feature-section p,
.form-section p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.55;
}

.about-split {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: 22px;
  align-items: center;
}

.about-split img {
  width: 100%;
  min-height: 215px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(30,234,255,0.6);
  box-shadow: 0 0 16px rgba(30,234,255,0.3);
}

.gig-row {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 13px;
  align-items: center;
  margin-bottom: 16px;
}

.date strong {
  display: block;
  color: var(--pink);
  font-size: 2.1rem;
  line-height: 0.88;
  text-shadow: 0 0 13px var(--pink);
}

.date span {
  color: var(--pink);
  text-transform: uppercase;
}

.gig-row h3 {
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}

.gig-row p {
  margin: 3px 0 0;
  line-height: 1.15;
}

.centre {
  margin: 10px auto 0;
  display: table;
}

.youtube-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(30,234,255,0.75);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(30,234,255,0.34);
  background: #000;
}

.youtube-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.booking-strip {
  min-height: 110px;
  display: grid;
  grid-template-columns: 160px 1fr 260px 260px;
  align-items: center;
  gap: 24px;
  padding: 26px 70px;
  border-bottom: 2px solid var(--pink);
  background: rgba(3,2,12,0.97);
}

.icon {
  font-family: Bangers, cursive;
  color: var(--cyan);
  font-size: 4rem;
  text-align: center;
  text-shadow: 0 0 18px var(--cyan);
}

.booking-strip h2 {
  color: var(--cyan);
  margin-bottom: 5px;
  text-shadow: 0 0 14px var(--cyan);
}

.follow {
  display: grid;
  gap: 6px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cyan);
  text-shadow: 0 0 12px var(--cyan);
}

.follow a {
  color: white;
  border: 1px solid var(--pink);
  border-radius: 8px;
  padding: 9px 16px;
  text-shadow: none;
  box-shadow: inset 0 0 12px rgba(255,43,214,0.22);
}

.feature-section,
.form-section {
  padding: 78px 42px;
  border-bottom: 2px solid var(--pink);
  background:
    radial-gradient(circle at 18% 12%, rgba(30,234,255,0.12), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(255,43,214,0.16), transparent 30%),
    rgba(5,3,20,0.96);
}

.feature-section > .label,
.feature-section > h2,
.feature-section > .intro {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.label {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.1rem;
  text-shadow: 0 0 12px var(--cyan);
}

.intro { max-width: 760px; }

.band-grid {
  max-width: 1220px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.member-card {
  padding: 18px;
  border: 1px solid rgba(255,43,214,0.75);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)), rgba(10,5,32,0.92);
  box-shadow: 0 0 18px rgba(255,43,214,0.28), inset 0 0 16px rgba(30,234,255,0.12);
  text-align: center;
}

.member-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 1px solid rgba(30,234,255,0.75);
  border-radius: 14px;
  box-shadow: 0 0 15px rgba(30,234,255,0.26);
}

.member-card:nth-child(2) img { object-position: center 24%; }
.member-card:nth-child(5) img { object-position: center 38%; }

.member-card h3 {
  margin: 18px 0 4px;
  font-family: Bangers, cursive;
  color: white;
  font-size: 2.4rem;
  text-shadow: 0 0 12px var(--pink);
}

.member-card p {
  margin: 0 0 6px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(30,234,255,0.7);
}

.gigs-full { background: rgba(6,3,22,0.98); }

.full-gig-grid {
  max-width: 1220px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.full-gig-grid article {
  padding: 22px;
  border: 1px solid rgba(255,43,214,0.7);
  border-radius: 16px;
  background: rgba(255,255,255,0.055);
  box-shadow: inset 0 0 18px rgba(255,43,214,0.18);
}

.full-gig-grid strong {
  display: block;
  color: white;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.full-gig-grid span {
  display: inline-block;
  margin: 6px 0;
  color: var(--cyan);
  font-weight: 700;
}

.full-gig-grid p { margin: 0; }

.song-grid {
  max-width: 1220px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.song-grid span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
  border: 1px solid rgba(255,43,214,0.7);
  border-radius: 10px;
  background: rgba(255,255,255,0.055);
  box-shadow: inset 0 0 14px rgba(255,43,214,0.18);
  text-transform: uppercase;
  font-weight: 700;
}

.gallery-grid {
  max-width: 1400px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 16px;
}

.gallery-grid a {
  overflow: hidden;
  border: 1px solid rgba(30,234,255,0.65);
  border-radius: 16px;
  box-shadow: 0 0 16px rgba(30,234,255,0.24);
}

.gallery-grid a:nth-child(1),
.gallery-grid a:nth-child(5) {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease, filter .25s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.04);
  filter: saturate(1.2);
}

.form-section form,
.form-section > .label,
.form-section > h2,
.form-section > .direct-email {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.form-section form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  text-transform: uppercase;
  font-weight: 700;
}

.full { grid-column: 1 / -1; }

input,
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(30,234,255,0.7);
  border-radius: 9px;
  background: rgba(0,0,0,0.44);
  color: white;
  font: inherit;
  box-shadow: inset 0 0 12px rgba(30,234,255,0.16);
}

footer {
  text-align: center;
  padding: 24px;
  color: #d2cde0;
  background: #02020a;
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: 120px 1fr;
  }

  .top-socials { display: none; }

  .nav {
    gap: 14px;
    font-size: 0.95rem;
  }

  .triple-panel,
  .booking-strip,
  .about-split {
    grid-template-columns: 1fr;
  }

  .panel {
    border-right: 0;
    border-bottom: 1px solid rgba(255,43,214,0.7);
  }
}

@media (max-width: 900px) {
  .band-grid,
  .full-gig-grid,
  .song-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .member-card img { height: 320px; }
}

@media (max-width: 720px) {
  .site-frame {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .topbar {
    grid-template-columns: 95px 1fr;
    padding: 10px 18px;
    min-height: 68px;
  }

  .brand { font-size: 2.4rem; }

  .menu-toggle {
    display: block;
    justify-self: end;
    border: 1px solid var(--pink);
    color: var(--pink);
    background: transparent;
    border-radius: 8px;
    font-size: 1.5rem;
    padding: 4px 10px;
  }

  .nav { display: none; }

  .nav.open {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0 18px;
  }

  .hero-text-left {
    left: 4%;
    top: 13%;
  }

  .hero-text-right {
    right: 4%;
    top: 44%;
  }

  .hero-text-right a {
    padding: 9px 15px;
  }

  .panel,
  .booking-strip,
  .feature-section,
  .form-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .band-grid,
  .full-gig-grid,
  .song-grid,
  .gallery-grid,
  .form-section form {
    grid-template-columns: 1fr;
  }

  .member-card img { height: 390px; }

  .gallery-grid {
    grid-auto-rows: 330px;
  }

  .gallery-grid a:nth-child(1),
  .gallery-grid a:nth-child(5) {
    grid-row: auto;
  }

  .full { grid-column: auto; }
}


/* Kier temporary placeholder card */
.member-coming-soon {
  width: 100%;
  height: 360px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(30,234,255,0.75);
  border-radius: 14px;
  background:
    radial-gradient(circle at center, rgba(255,43,214,0.24), transparent 45%),
    linear-gradient(135deg, rgba(30,234,255,0.13), rgba(0,0,0,0.64)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 6px);
  box-shadow:
    0 0 15px rgba(30,234,255,0.26),
    inset 0 0 26px rgba(255,43,214,0.22);
}

.member-coming-soon span {
  font-family: Bangers, cursive;
  color: var(--pink);
  font-size: clamp(2.2rem, 4vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  text-shadow:
    0 0 8px #ffffff,
    0 0 18px var(--pink),
    0 0 34px var(--pink);
  transform: rotate(-4deg);
}

@media (max-width: 900px) {
  .member-coming-soon {
    height: 320px;
  }
}

@media (max-width: 720px) {
  .member-coming-soon {
    height: 390px;
  }
}
