:root {
  --bg: #0a0a0d;
  --bg-2: #111119;
  --panel: #14141b;
  --panel-soft: rgba(255, 255, 255, 0.03);
  --text: #f4f4f5;
  --muted: #b4b4c0;
  --accent: #e11d48;
  --accent-soft: #fb7185;
  --accent-2: #7c3aed;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.18), transparent 28%),
    radial-gradient(circle at top left, rgba(225, 29, 72, 0.18), transparent 24%),
    linear-gradient(180deg, #0b0b0f 0%, #111119 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(10, 10, 13, 0.78);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text);
}

/* HERO */

.hero {
  padding: 2rem 0 4rem;
}

.hero-title {
  margin: 0 0 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  font-size: clamp(2.75rem, 6vw, 5rem);
}

.full-hero {
  width: 100%;
  height: 430px;
  margin-bottom: 2rem;
  border-radius: 20px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    var(--shadow);
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  isolation: isolate;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 40%;
}

/* Default / Home page */
.hero:not(.about-hero):not(.contact-hero) .hero-image {
  background-image: url("images/band-hero.jpg");
}

/* About page */
.about-hero .hero-image {
  background-image: url("images/about-hero.png");
}

/* Contact page */
.contact-hero .hero-image {
  background-image: url("images/contact-hero.png");
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.68)),
    linear-gradient(135deg, rgba(225, 29, 72, 0.18), rgba(124, 58, 237, 0.12) 45%, transparent 75%);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 18% 15%, rgba(225, 29, 72, 0.2), transparent 25%),
    radial-gradient(circle at 80% 18%, rgba(59, 130, 246, 0.16), transparent 22%),
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.24) 100%);
  pointer-events: none;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content h2 {
  width: 100%;
  margin: 0 0 0.5rem;
  line-height: 1.15;
  text-align: center;
}

.hero-subtext {
  width: 100%;
  max-width: 500px;
  margin: 0 0 1.5rem;
  text-align: center;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.contact-hero .hero-subtext,
.about-hero .hero-subtext {
  max-width: 700px;
}

/* GLOBAL SECTIONS */

section {
  padding: 4rem 0;
}

h1,
h2,
h3 {
  line-height: 1.1;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  max-width: 55ch;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: #fda4af;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

/* CARDS / LAYOUT */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 1.1rem;
  margin-top: 0;
}

.card p {
  color: var(--muted);
  margin: 0;
}

/* SHOWS */

.shows-list,
.setlist-grid {
  display: grid;
  gap: 1rem;
}

.show-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 1rem;
  align-items: center;
  background: var(--panel-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.15rem;
}

.show-date {
  font-weight: 800;
  color: #fda4af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.show-meta small,
.muted {
  color: var(--muted);
}

/* MEDIA GALLERY */

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 1rem;
}

.gallery .panel {
  min-height: 240px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    var(--shadow);
  position: relative;
  isolation: isolate;
}

.gallery .panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.58)),
    linear-gradient(135deg, rgba(225, 29, 72, 0.18), transparent 42%),
    linear-gradient(225deg, rgba(59, 130, 246, 0.14), transparent 38%);
}

.gallery .panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.16) 100%);
  pointer-events: none;
}

.gallery .panel:nth-child(1) {
  background-image: url("images/live-1.jpg");
  background-position: center 24%;
  min-height: 360px;
}

.gallery .panel:nth-child(2) {
  background-image: url("images/live-2.jpg");
  background-position: center 20%;
}

.gallery .panel:nth-child(3) {
  background-image: url("images/live-3.jpg");
  background-position: center 24%;
}

.media-feature {
  width: 100%;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  isolation: isolate;

  background-image: url("images/live_blackswan_lg.png");
  background-size: cover;
  background-position: center 30%;

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    var(--shadow);
}

.media-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.65)),
    linear-gradient(135deg, rgba(225,29,72,0.18), transparent 45%),
    linear-gradient(225deg, rgba(59,130,246,0.14), transparent 40%);
}

.media-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.2) 100%);
}

/* ABOUT PAGE */

.about-band-copy {
  padding-top: 1rem;
}

.members-section {
  padding-top: 1rem;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.member-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.member-photo {
  position: relative;
  min-height: 340px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 24%;
  isolation: isolate;
}

.member-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62)),
    linear-gradient(135deg, rgba(225, 29, 72, 0.12), transparent 40%),
    linear-gradient(225deg, rgba(59, 130, 246, 0.1), transparent 35%);
}

.member-name {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(10, 10, 13, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

/* MEMBER IMAGE ASSIGNMENTS */

.member-matt {
  background-image: url("images/live-1.jpg");
  background-position: center 22%;
}

.member-jeremy {
  background-image: url("images/live-2.jpg");
  background-position: center 18%;
}

.member-brendan {
  background-image: url("images/live-3.jpg");
  background-position: center 22%;
}

.member-josh {
  background-image: url("images/live-4.jpg");
  background-position: center 20%;
}

.member-dean {
  background-image: url("images/live-5.jpg");
  background-position: center 20%;
}

/* CONTACT PAGE */

.contact-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
}

.info-stack {
  display: grid;
  gap: 1rem;
}

.quote {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ffe4e6;
}

.list {
  padding-left: 1rem;
  margin: 0;
  color: var(--muted);
}

/* FORM */

form {
  display: grid;
  gap: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  background: #0e0e14;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.9rem 0.95rem;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(225, 29, 72, 0.6);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.16);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.success {
  display: none;
  margin-top: 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.28);
  color: #bbf7d0;
  border-radius: 14px;
  padding: 0.9rem 1rem;
}

.success.show {
  display: block;
}

/* FOOTER */

.site-footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
}

.footer-inner {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner a {
  color: var(--text);
}

.footer-inner a:hover {
  color: #fda4af;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .member-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 920px) {
  .contact-wrap,
  .gallery,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .show-item {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 0;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .full-hero {
    height: 300px;
  }

  .hero-image {
    background-position: center 34%;
  }

  .member-grid {
    grid-template-columns: 1fr;
  }

  .member-photo {
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  .media-feature {
    height: 300px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
}

.modal-content {
  position: relative;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}

.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.cover-band-card {
  text-align: center;
  padding: 2rem;
}

.cover-band-list {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.8;
  color: var(--text);
  font-weight: 700;
}