:root {
  --bg: #0a0f0d;
  --panel: rgba(10, 10, 10, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f5f5f5;
  --muted: rgba(245, 245, 245, 0.78);
  --accent: #2f8f7b;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --max: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s ease, transform 6s ease;
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.58), rgba(0,0,0,0.84)),
    radial-gradient(circle at center, rgba(47, 143, 123, 0.18), transparent 45%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px 84px;
}

.hero-card {
  width: min(100%, 1020px);
  padding: 46px 34px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-logo {
  width: min(100px, 30%);
  margin: 0 auto 24px;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.45));
}

.hero-schrift {
  width: min(760px, 100%);
  margin: 0 auto 24px;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.45));
}

.hero-claim {
  margin: 0 auto;
  max-width: 780px;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--muted);
}

.hero-actions,
.contact-links,
.download-list {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.4);
}

.btn-primary {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}

.btn-primary:hover {
  background: #38a08a;
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: 0.2s ease;
}

.hero-dot.active {
  width: 34px;
  background: #fff;
}

.section {
  padding: 92px 20px;
}

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

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

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

h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.section-copy {
  color: var(--muted);
  font-size: 20px;
}

.band-section {
  background: url('../images/Dirty-Walls-1-2.webp') center/cover no-repeat;
  color: #111;
  position: relative;
}

.band-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.34);
}

.band-section .container {
  position: relative;
  z-index: 1;
}

.band-title {
  color: #111;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.band-copy {
  color: #222;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  align-items: start;
}

.member {
  text-align: center;
}

.member-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 16px;
  filter: contrast(1.08) saturate(1.08);
  mix-blend-mode: multiply;
}

.member-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #101010;
}

.member-role {
  color: #232323;
  font-size: 15px;
}

.gig-card,
.contact-card,
.promoter-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.gig-card,
.promoter-card,
.contact-card {
  text-align: center;
}

.gig-meta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 18px;
}

.contact-card,
.promoter-card {
  max-width: 860px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  gap: 16px;
  max-width: 700px;
  margin: 26px auto 0;
  text-align: left;
}

.form-grid label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--muted);
}

.input,
.textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: 14px 16px;
  font: inherit;
}

.textarea {
  min-height: 180px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.form-note {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  text-align: center;
}

.message-box {
  max-width: 700px;
  margin: 0 auto 20px;
  padding: 14px 18px;
  border-radius: 16px;
  text-align: center;
}

.message-error {
  background: rgba(180, 50, 50, 0.18);
  border: 1px solid rgba(255, 120, 120, 0.28);
  color: #ffd3d3;
}

.message-success {
  background: rgba(47, 143, 123, 0.18);
  border: 1px solid rgba(95, 202, 180, 0.28);
  color: #d7fff6;
}

.download-item {
  min-width: 240px;
}

.logout-form {
  margin-top: 20px;
}

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

footer {
  padding: 24px 20px 34px;
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .band-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .hero-card {
    padding: 32px 20px;
  }

  .section {
    padding: 72px 18px;
  }

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

  .gig-card,
  .contact-card,
  .promoter-card {
    padding: 24px 20px;
  }

  .hero-claim {
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  .band-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-links,
  .download-list {
    flex-direction: column;
  }

  .btn,
  .download-item {
    width: 100%;
  }
}
.hero-next-gig {
  margin: 26px auto 0;
  max-width: 760px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}

.hero-next-gig-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.hero-next-gig-meta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  color: #fff;
  font-size: 17px;
}

.hero-next-gig-meta span {
  white-space: nowrap;
}
.hero-next-gig-link-wrap {
  margin-top: 14px;
}

.hero-next-gig-link {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  transition: 0.2s ease;
}

.hero-next-gig-link:hover {
  border-bottom-color: #fff;
}