*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
header {
  text-align: center;
  padding: 60px 20px 40px;
}

.band-name {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(4rem, 15vw, 10rem);
  letter-spacing: 0.1em;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 0 40px rgba(180, 0, 0, 0.4);
}

.location {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #666;
  margin-top: 8px;
}

/* Albums */
main {
  flex: 1;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
}

.albums {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  padding-bottom: 60px;
}

.album {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 1 1 280px;
  max-width: 340px;
  transition: transform 0.2s ease;
}

.album:hover {
  transform: scale(1.03);
}

.album img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: filter 0.2s ease;
}

.album:hover img {
  filter: brightness(1);
}

.album-title {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #888;
  transition: color 0.2s ease;
}

.album:hover .album-title {
  color: #ccc;
}

/* Footer / Socials */
footer {
  width: 100%;
  padding: 28px 20px 40px;
  border-top: 1px solid #1a1a1a;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #555;
  transition: color 0.2s ease;
}

.social-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.social-link:hover {
  color: #fff;
}
