/* ━━━━━━━━━━━━━━━✨ BASIS-STYLES & ROOT-VARIABLEN ━━━━━━━━━━━━━━━ */
:root {
  --accent: #D87C4A;
  --highlight: #ffd7ba;
}
body {
  background-image: url('kizu-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: black;
  color: #f5f5f5;
  font-family: "Dancing Script", cursive;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 0.5 = 50% dunkel, höhere Zahl = dunkler */
  z-index: -1;
}
/* ━━━━━━━━━━━━━━━ BAND PAGE LAYOUT ━━━━━━━━━━━━━━━ */
/* Main Grid Container */
.band-container {
  max-width: 1600px;
  margin: 20px auto;
  padding: 10px;
  display: grid;
  grid-template-columns: 250px 1fr 250px; /* Links | Mitte | Rechts */
  grid-template-rows: auto auto auto auto;
  gap: 20px;
  align-items: flex-start; /* wichtig! */
}
/* Header (h1) - spans all columns */
.band-header {
  grid-column: 1 / -1;
  text-align: center;
  color: #C50011;
  font-size: 80px;
  margin-top: 0; /* entfernt den Abstand nach oben */
}
/* Linke Sidebar - Kurze Infos + Links zusammen */
.info-sidebar {
  grid-column: 1;
  grid-row: 2; /* nimmt 3 Reihen ein */
  background-color: black;
  border-radius: 10px;
  padding: 20px;
}
/* Mitte - Band Bild */
.band-bild {
  grid-column: 2;
  grid-row: 2;
  background-color: black;
  border-radius: 5px;
  padding: 0px;
  text-align: center;
}
.band-bild img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
/* Mitte - Members */
.members {
  grid-column: 2;
  grid-row: 3;
  background-color: black;
  border-radius: 10px;
  padding: 20px;
}
/* Mitte - Resourcen */
.resourcen {
  grid-column: 2;
  grid-row: 4;
  background-color: black;
  border-radius: 10px;
  padding: 20px;
}
/* Rechte Sidebar - Subgenres + Songs + Tags zusammen */
.tags-sidebar {
  grid-column: 3;
  grid-row: 2;
  background-color: black;
  border-radius: 10px;
  padding: 20px;
}
/* Sections innerhalb der Sidebars */
.sidebar-section {
  margin-bottom: 25px;
}
.sidebar-section:last-child {
  margin-bottom: 0;
}

/* ━━━━━━━━━━━━━━━✨ HEADERS & TEXT-STYLES ━━━━━━━━━━━━━━━ */
h2 {
  font-family: "Playpen Sans", cursive;
  font-size: 20px;
  align-self: center;
  color: #FE791C;
  margin: 5px auto;
  text-align: center;
}
h3 {
  color: #EEEEEE;
  font-size: 18px;
  margin-bottom: 10px;
}
p {
  margin: 5px 0;
  font-size: 15px;
}
.highlight {
  color: #D84040;
  font-weight: bold;
}
/* Listen Style */
.band-container ul {
  list-style: none;
  padding-left: 0;
}
.band-container li {
  margin-bottom: 8px;
}
.band-container a {
  color: #711414;
  text-decoration: none;
  transition: 0.3s;
}
.band-container a:hover {
  color: #EE9589;
}