/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100%;
  font-family: 'Special Elite', cursive;
  overflow-x: hidden;
}

/* === Dark industrial background === */
body {
  background-color: #1a1a1a;
  background-image: url('bkgrd.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #c0c0c0;
}

/* === Page container === */
.page-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
}

/* === Header === */
header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-title {
  font-family: 'Teko', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #c0c0c0;
  text-shadow:
    0 0 15px rgba(192, 192, 192, 0.4),
    0 0 30px rgba(192, 192, 192, 0.2),
    2px 2px 4px rgba(0, 0, 0, 0.9);
  animation: fadeIn 1.5s ease-in forwards;
}

/* === Concerts container === */
.concerts-container {
  max-width: 900px;
  margin: 0 auto;
}

.loading {
  text-align: center;
  color: #888;
  font-size: 1.2rem;
  padding: 2rem;
}

/* === Concert row === */
.concert-row {
  background: rgba(26, 26, 26, 0.85);
  border: 1px solid #444;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.concert-row:nth-child(1) { animation-delay: 0.1s; }
.concert-row:nth-child(2) { animation-delay: 0.2s; }
.concert-row:nth-child(3) { animation-delay: 0.3s; }
.concert-row:nth-child(4) { animation-delay: 0.4s; }
.concert-row:nth-child(5) { animation-delay: 0.5s; }
.concert-row:nth-child(n+6) { animation-delay: 0.6s; }

.concert-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.concert-summary:hover {
  background: rgba(196, 90, 45, 0.1);
}

.concert-info {
  flex: 1;
}

.concert-date {
  font-family: 'Teko', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #c45a2d;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.concert-venue {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 0.2rem;
}

.concert-location {
  font-size: 0.85rem;
  color: #777;
}

.expand-icon {
  font-size: 1.5rem;
  color: #666;
  transition: transform 0.3s ease;
  user-select: none;
}

.concert-row.expanded .expand-icon {
  transform: rotate(180deg);
}

/* === Setlist details === */
.setlist-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  border-top: 1px solid #333;
}

.concert-row.expanded .setlist-details {
  max-height: 2000px;
}

.setlist-content {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.4);
}

.no-setlist {
  color: #666;
  font-style: italic;
  text-align: center;
  padding: 1rem;
}

.set {
  margin-bottom: 2rem;
}

.set:last-child {
  margin-bottom: 0;
}

.set-name {
  font-family: 'Teko', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #c45a2d;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #444;
}

.song-list {
  list-style: none;
  padding-left: 1rem;
}

.song-item {
  padding: 0.4rem 0;
  color: #aaa;
  font-size: 0.9rem;
  border-bottom: 1px dotted #333;
}

.song-item:last-child {
  border-bottom: none;
}

.song-name {
  color: #c0c0c0;
}

.song-info {
  color: #666;
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

/* === Animations === */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsive === */
@media (max-width: 768px) {
  .page-container {
    padding: 1rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .concert-summary {
    padding: 1rem;
  }

  .concert-date {
    font-size: 1.2rem;
  }

  .concert-venue,
  .concert-location {
    font-size: 0.8rem;
  }
}
