:root {
  --red:    #8B1010;
  --deep:   #3A0808;
  --yellow: #F5E122;
  --pink:   #E8168A;
  --teal:   #1ABFB0;
  --green:  #2DC84D;
  --orange: #F07A18;
  --white:  #F2EEE2;
  --black:  #111;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background-color: var(--deep);
  /* Album-Cover als Hintergrundtextur */
  background-image: url('allis-gae-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  color: var(--white);
  font-family: 'Special Elite', serif;
  min-height: 100vh;
  cursor: default;
}

/* Dunkles Overlay: Bild bleibt subtil sichtbar, Text bleibt lesbar */
body::before {
  content: '';
  position: fixed; inset: 0;
  background: rgba(12, 2, 2, 0.92);
  pointer-events: none;
  z-index: 0;
}

/* ── HEADER ── */
header {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 50%, #A01515 0%, var(--deep) 70%),
    repeating-linear-gradient(135deg, transparent, transparent 40px, rgba(0,0,0,0.08) 40px, rgba(0,0,0,0.08) 41px);
  padding: 2.5rem 2rem 1.5rem;
  border-bottom: 4px solid var(--yellow);
  overflow: hidden;
}
header::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 12px, var(--pink) 12px 24px, var(--teal) 24px 36px, var(--green) 36px 48px);
}

.logo-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
.logo-wrap a { text-decoration: none; }
.logo-line {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  line-height: 1;
}
.letter-block {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 1;
  padding: 2px 6px 0;
  color: var(--black);
  position: relative;
  animation: blockIn 0.4s both;
}
@keyframes blockIn {
  from { transform: rotate(var(--r, 0deg)) scale(0.7); opacity: 0; }
  to   { transform: rotate(var(--r, 0deg)) scale(1);   opacity: 1; }
}
.letter-block:nth-child(1)  { background: var(--pink);   --r:-1.5deg; animation-delay:0.05s }
.letter-block:nth-child(2)  { background: var(--teal);   --r: 1.2deg; animation-delay:0.10s }
.letter-block:nth-child(3)  { background: var(--yellow); --r:-0.8deg; animation-delay:0.15s }
.letter-block:nth-child(4)  { background: var(--green);  --r: 1.5deg; animation-delay:0.20s }
.letter-block:nth-child(5)  { background: var(--pink);   --r:-1.1deg; animation-delay:0.25s }
.letter-block:nth-child(6)  { background: var(--teal);   --r: 0.9deg; animation-delay:0.30s }
.letter-block:nth-child(7)  { background: var(--yellow); --r:-1.4deg; animation-delay:0.35s }
.letter-block:nth-child(8)  { background: var(--green);  --r: 1.2deg; animation-delay:0.40s }
.letter-block:nth-child(9)  { background: var(--orange); --r:-0.7deg; animation-delay:0.45s }
.letter-block:nth-child(10) { background: var(--pink);   --r: 1.6deg; animation-delay:0.50s }
.logo-line2 .letter-block:nth-child(1) { background: var(--yellow); --r:-1.2deg; animation-delay:0.55s }
.logo-line2 .letter-block:nth-child(2) { background: var(--pink);   --r: 1.0deg; animation-delay:0.60s }
.logo-line2 .letter-block:nth-child(3) { background: var(--teal);   --r:-0.9deg; animation-delay:0.65s }
.logo-line2 .letter-block:nth-child(4) { background: var(--green);  --r: 1.3deg; animation-delay:0.70s }

.tagline {
  font-family: 'Permanent Marker', cursive;
  color: var(--yellow);
  font-size: clamp(0.85rem, 2.5vw, 1.3rem);
  margin-top: 0.6rem;
  text-shadow: 2px 2px 0 var(--deep);
  animation: blockIn 0.5s 0.8s both;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0; z-index: 100;
  background: var(--black);
  border-bottom: 3px solid var(--teal);
}
nav ul {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 1rem;
}
nav ul li a {
  display: block;
  padding: 0.85rem 1.1rem;
  color: var(--white);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 2px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--yellow);
  transition: left 0.2s, right 0.2s;
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--yellow);
}
nav ul li a:hover::after,
nav ul li a.active::after {
  left: 0; right: 0;
}

/* ── MAIN ── */
main {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
  animation: fadeIn 0.35s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; } }

/* ── SECTION HEADINGS ── */
.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  letter-spacing: 4px;
  display: inline-block;
  padding: 4px 14px;
  margin-bottom: 2rem;
  position: relative;
}
.sec-title.yellow { background: var(--yellow); color: var(--black); }
.sec-title.pink   { background: var(--pink);   color: var(--black); }
.sec-title.teal   { background: var(--teal);   color: var(--black); }
.sec-title.green  { background: var(--green);  color: var(--black); }
.sec-title.orange { background: var(--orange); color: var(--black); }

/* ── TERMIN CARDS ── */
.termine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.termin-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid transparent;
  border-left: 6px solid var(--yellow);
  padding: 1.1rem 1.2rem;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.termin-card:hover {
  border-color: var(--yellow);
  transform: translateX(4px);
}
.termin-card.sold-out {
  border-left-color: var(--pink);
  opacity: 0.7;
}
.termin-card.tour27 {
  border-left-color: var(--teal);
}
.termin-card .date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--yellow);
  letter-spacing: 2px;
}
.termin-card .venue {
  font-weight: 700;
  font-size: 1rem;
  margin: 0.2rem 0;
  color: var(--white);
}
.termin-card .detail {
  font-size: 0.85rem;
  color: rgba(242,238,226,0.7);
}
.badge {
  position: absolute;
  top: 0.7rem; right: 0.8rem;
  background: var(--pink);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  padding: 1px 7px;
  letter-spacing: 1px;
  transform: rotate(2deg);
}
.badge.teal   { background: var(--teal); }
.badge.green  { background: var(--green); }
.badge.yellow { background: var(--yellow); }

.tickets-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--teal);
  font-size: 0.8rem;
  text-decoration: none;
  border-bottom: 1px solid var(--teal);
  transition: color 0.2s;
}
.tickets-link:hover { color: var(--yellow); border-color: var(--yellow); }

/* ── TOUR BLOCK HEADING ── */
.tour-head {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--teal);
  letter-spacing: 3px;
  border-bottom: 2px solid var(--teal);
  margin: 2rem 0 1.2rem;
  padding-bottom: 0.3rem;
}
.tour-head:first-of-type { margin-top: 0; }

/* ── YEAR HEADING ── */
.year-head {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--teal);
  border-bottom: 2px solid var(--teal);
  margin: 2rem 0 1rem;
  letter-spacing: 3px;
}
.year-head:first-child { margin-top: 0; }

/* ── TEXTE ── */
.text-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.text-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.text-toggle {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Special Elite', serif;
  font-size: 1.05rem;
  text-align: left;
  padding: 0.9rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.text-toggle:hover { color: var(--yellow); }
.text-toggle .arrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.text-toggle.open .arrow { transform: rotate(90deg); }
.text-toggle .album-year {
  font-size: 0.75rem;
  color: rgba(242,238,226,0.5);
  font-family: 'Lato', sans-serif;
  flex-shrink: 0;
}
.text-meta {
  font-size: 0.78rem;
  color: rgba(242,238,226,0.45);
  font-family: 'Lato', sans-serif;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.text-body {
  display: none;
  padding: 0 0 1.2rem;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(242,238,226,0.85);
  white-space: pre-line;
}
.text-body.open { display: block; animation: fadeIn 0.25s; }

/* ── ALBEN ── */
.alben-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.5rem;
}
.album-card {
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.1);
  padding: 1rem;
  transition: transform 0.2s, border-color 0.2s;
}
.album-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}
.album-art {
  width: 100%;
  aspect-ratio: 1;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  position: relative;
  overflow: hidden;
}
.album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.album-art-inner {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--white);
  text-align: center;
  padding: 1rem;
  line-height: 1.2;
}
.album-card:nth-child(1) .album-art { background: #1A0A2E; }
.album-card:nth-child(2) .album-art { background: #6B2D8B; }
.album-card:nth-child(3) .album-art { background: #0E4F7A; }
.album-card:nth-child(4) .album-art { background: #1A6B2A; }
.album-card:nth-child(5) .album-art { background: #8B4A0A; }
.album-card:nth-child(6) .album-art { background: #5A1A1A; }
.album-card:nth-child(7) .album-art { background: #0A4040; }
.album-card:nth-child(8) .album-art { background: #2A2A6B; }
.album-card:nth-child(9) .album-art { background: #6B0A3A; }
.album-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--yellow);
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}
.album-year-tag {
  font-size: 0.8rem;
  color: rgba(242,238,226,0.5);
  font-family: 'Lato', sans-serif;
  margin-bottom: 0.5rem;
}
.album-tracklist {
  margin-top: 0.4rem;
  font-size: 0.76rem;
  color: rgba(242,238,226,0.6);
  line-height: 1.65;
}
.album-spotify {
  display: inline-block;
  margin-top: 0.7rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid var(--teal);
  transition: color 0.2s;
}
.album-spotify:hover { color: var(--yellow); border-color: var(--yellow); }

/* ── ARCHIVE TABLE ── */
.archive-decade {
  margin-bottom: 2rem;
}
.archive-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.archive-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
}
.archive-table tr:hover { background: rgba(255,255,255,0.04); }
.archive-table td {
  padding: 0.4rem 0.7rem;
  color: rgba(242,238,226,0.75);
  vertical-align: top;
}
.archive-table td:first-child {
  color: var(--yellow);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  white-space: nowrap;
  width: 90px;
}
.archive-table td:last-child { color: rgba(242,238,226,0.5); font-size: 0.8rem; }

/* ── KONTAKT ── */
.kontakt-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 600px) { .kontakt-box { grid-template-columns: 1fr; } }
.info-block {
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
}
.info-block h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}
.info-block p, .info-block a {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(242,238,226,0.85);
}
.info-block a { color: var(--yellow); text-decoration: none; }
.info-block a:hover { text-decoration: underline; }

/* ── NEWSLETTER FORM ── */
.nl-form {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.nl-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.08);
  border: 2px solid var(--teal);
  color: var(--white);
  font-family: 'Special Elite', serif;
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
  outline: none;
}
.nl-form input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.nl-form input[type="email"]:focus { border-color: var(--yellow); }
.btn-punk {
  background: var(--yellow);
  color: var(--black);
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-punk:hover { background: var(--pink); color: var(--black); }
.btn-punk:active { transform: scale(0.97); }
.nl-msg {
  display: none;
  width: 100%;
  color: var(--green);
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

/* ── IMPRESSUM / DATENSCHUTZ ── */
.legal-content {
  max-width: 700px;
  font-size: 0.92rem;
  line-height: 1.8;
}
.legal-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--teal);
  margin: 1.5rem 0 0.4rem;
  letter-spacing: 2px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: rgba(242,238,226,0.8); margin-bottom: 0.5rem; }
.legal-content a { color: var(--yellow); }

/* ── ARCHIV LINK PAGE ── */
.archiv-link-box {
  background: rgba(255,255,255,0.04);
  border: 2px solid var(--teal);
  padding: 2.5rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.archiv-link-box p {
  color: rgba(242,238,226,0.7);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}
.btn-big {
  display: inline-block;
  background: var(--teal);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 3px;
  padding: 0.8rem 2rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.btn-big:hover { background: var(--yellow); }
.btn-big:active { transform: scale(0.97); }

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  background: var(--black);
  border-top: 4px solid var(--yellow);
  text-align: center;
  padding: 1.8rem 1.5rem;
  font-size: 0.82rem;
  color: rgba(242,238,226,0.6);
  font-family: 'Lato', sans-serif;
}
footer a { color: var(--teal); text-decoration: none; }
footer a:hover { color: var(--yellow); text-decoration: underline; }

/* ── SCROLL TO TOP ── */
#scrolltop {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--yellow);
  color: var(--black);
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  width: 42px; height: 42px;
  cursor: pointer;
  display: none;
  z-index: 200;
  align-items: center;
  justify-content: center;
}
#scrolltop.visible { display: flex; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  nav ul li a { padding: 0.7rem 0.6rem; font-size: 0.95rem; }
  .termin-card .date { font-size: 1.3rem; }
  .alben-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
