* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #f2f2f2;
  background:
    radial-gradient(circle at top, rgba(110, 0, 0, 0.35), transparent 24%),
    #030303;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.26) 0.6px, transparent 0.6px),
    linear-gradient(rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(90deg, transparent 0, rgba(255,255,255,0.03) 50%, transparent 100%);
  background-size: 8px 8px, 100% 100%, 100% 100%;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 70px);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.brand img {
  display: block;
  width: clamp(120px, 15vw, 170px);
}

nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  color: #e9e9e9;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 12px;
}

nav a:hover {
  color: #ff4b4b;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.texture {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px) 0 0 / 100% 6px,
    linear-gradient(90deg, rgba(255,255,255,0.035), transparent 35%, rgba(120,0,0,0.14));
  mix-blend-mode: screen;
  opacity: 0.55;
}

.hero::after {
  content: "UNREAD";
  position: absolute;
  right: -30px;
  bottom: -30px;
  font-size: clamp(90px, 15vw, 240px);
  font-weight: 900;
  letter-spacing: -0.08em;
  color: rgba(255,255,255,0.04);
  line-height: 0.9;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 72px 0 150px;
}

.hero-copy,
.hero-art {
  position: relative;
  z-index: 2;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: min(640px, 100%);
  filter: drop-shadow(0 0 38px rgba(255,255,255,0.09));
}

.hero-photo {
  display: block;
  width: min(760px, 100%);
  max-width: 100%;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 70px rgba(0,0,0,0.45);
}


.eyebrow {
  margin: 0 0 16px;
  color: #ff3b3b;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 900;
  font-size: 12px;
}

h1,
h2,
h3 {
  margin: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(48px, 8vw, 100px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  max-width: 700px;
}

h2 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.hero-text,
.section p,
.card p {
  color: #cbcbcb;
  line-height: 1.75;
}

.hero-text {
  margin: 26px 0 0;
  max-width: 640px;
  font-size: 18px;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button,
.mail-link,
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,0.16);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 900;
  transition: 0.2s ease;
}

.button.primary {
  background: #f2f2f2;
  color: #040404;
}

.button.ghost,
.mail-link,
.social-link {
  background: rgba(255,255,255,0.04);
  color: #f2f2f2;
}

.button:hover,
.mail-link:hover,
.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(255, 59, 59, 0.2);
}

.section {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
}

.instagram-block {
  width: min(1280px, calc(100vw - 40px));
  margin-left: calc((min(1120px, calc(100% - 40px)) - min(1280px, calc(100vw - 40px))) / 2);
  margin-right: calc((min(1120px, calc(100% - 40px)) - min(1280px, calc(100vw - 40px))) / 2);
}

.section-tight {
  padding-top: 70px;
}

.section-heading {
  margin-bottom: 32px;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.band-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 18px;
  margin-bottom: 18px;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.instagram-embed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(326px, 1fr));
  gap: 18px;
  align-items: start;
}

.card,
.spotify-box,
.instagram-embed-card {
  border: 1px solid rgba(255,255,255,0.11);
  background: linear-gradient(155deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.bio-card p:last-child {
  margin-bottom: 0;
}

.facts-card dl {
  margin: 22px 0 0;
}

.facts-card div {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.facts-card div:last-child {
  border-bottom: 0;
}

.facts-card dt,
.member-card span {
  color: #ff3b3b;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 900;
}

.facts-card dd {
  margin: 8px 0 0;
  color: #e8e8e8;
  line-height: 1.5;
}

.facts-card a {
  color: #ffffff;
  text-decoration: none;
}

.facts-card a:hover {
  color: #ff4b4b;
}

.member-card {
  min-height: 170px;
}

.member-card h3 {
  margin-top: 18px;
}

.instagram-block {
  margin-top: 74px;
}

.instagram-embed-card {
  padding: 10px;
  overflow: visible;
}

.instagram-embed-card .instagram-media {
  min-width: 326px !important;
  max-width: 540px !important;
  width: 100% !important;
  margin: 0 auto !important;
  background: #ffffff !important;
}

.spotify-box {
  padding: 12px;
}

.spotify-box iframe {
  display: block;
}

.dark-band {
  width: 100%;
  max-width: none;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  padding-right: max(20px, calc((100vw - 1120px) / 2));
}

.show-subheading {
  margin: 28px 0 16px;
  font-size: 18px;
  letter-spacing: 0.12em;
}

.future-heading {
  margin-top: 42px;
}

.show-list {
  border: 1px solid rgba(255,255,255,0.12);
}

.muted-list {
  opacity: 0.72;
}

.show-row {
  display: grid;
  grid-template-columns: 180px 1.25fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.show-row:last-child {
  border-bottom: 0;
}

.show-row strong {
  color: #ff3b3b;
}

.contact-box {
  text-align: center;
  margin-bottom: 80px;
  padding-left: 28px;
  padding-right: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(135deg, rgba(110,0,0,0.28), rgba(255,255,255,0.03));
}

.contact-actions {
  justify-content: center;
}

footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 4vw, 70px);
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #9a9a9a;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

@media (max-width: 1100px) {
  .instagram-block {
    width: min(760px, calc(100vw - 40px));
    margin-left: auto;
    margin-right: auto;
  }

  .instagram-embed-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .hero-inner,
  .band-grid,
  .lineup-grid,
  .show-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
  }

  nav {
    justify-content: center;
    gap: 14px;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}


.legal-page {
  min-height: 100vh;
}

.legal-main {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 110px;
}

.legal-card {
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(155deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  padding: clamp(24px, 5vw, 48px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.legal-card h1 {
  margin-bottom: 22px;
}

.legal-card h2 {
  margin-top: 42px;
  font-size: clamp(24px, 4vw, 38px);
}

.legal-card h3 {
  margin-top: 28px;
}

.legal-card p,
.legal-card li {
  color: #d0d0d0;
  line-height: 1.75;
}

.legal-card a,
.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.legal-card a:hover,
.footer-links a:hover {
  color: #ff4b4b;
}

.placeholder-box {
  margin: 28px 0;
  padding: 22px;
  border: 1px dashed rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
}

.footer-links {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}


.member-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}

.member-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.member-card:nth-child(2) .member-photo {
  aspect-ratio: 4 / 5;
}

.member-card:nth-child(3) .member-photo {
  aspect-ratio: 4 / 5;
}


.show-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.show-item:last-child {
  border-bottom: 0;
}

.show-item summary {
  list-style: none;
  cursor: pointer;
}

.show-item summary::-webkit-details-marker {
  display: none;
}

.show-item summary::after {
  content: "+";
  color: #ff3b3b;
  font-weight: 900;
  justify-self: end;
}

.show-item[open] summary::after {
  content: "–";
}

.show-item .show-row {
  grid-template-columns: 180px 1.25fr 1fr 32px;
  border-bottom: 0;
}

.show-dropdown {
  padding: 0 22px 26px;
  background: rgba(255,255,255,0.025);
}

.show-dropdown p {
  margin: 0 0 18px;
  color: #bdbdbd;
  line-height: 1.7;
}

.show-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.show-placeholder {
  position: relative;
  min-height: 190px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.04), rgba(0,0,0,0.45)),
    radial-gradient(circle at 50% 35%, rgba(255,255,255,0.14), transparent 32%),
    linear-gradient(135deg, rgba(130,0,0,0.35), rgba(255,255,255,0.03));
  overflow: hidden;
}

.show-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 100% 7px,
    radial-gradient(circle at center, transparent 35%, rgba(0,0,0,0.52));
  pointer-events: none;
}

.show-placeholder span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: #f2f2f2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .show-item .show-row {
    grid-template-columns: 1fr 32px;
  }

  .show-item .show-row strong,
  .show-item .show-row span {
    grid-column: 1;
  }

  .show-item summary::after {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }

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

  .show-dropdown {
    padding: 0 18px 22px;
  }
}


.error-page .legal-card {
  text-align: center;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}




/* 404: Text wirklich in der Mitte der Box ausrichten */
.error-page .legal-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.error-page .legal-card h1 {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.error-page .legal-card p {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.error-page .error-actions {
  width: 100%;
  justify-content: center;
}


/* Hero-Abstand angepasst: Hintergrund-Schriftzug bleibt vollständig sichtbar */
.hero {
  min-height: calc(100vh - 82px);
}

.hero-inner {
  padding-bottom: 150px;
}

.hero::after {
  right: 2vw;
  bottom: 14px;
  font-size: clamp(72px, 13vw, 210px);
}
