* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: #111;
  font-family: Inter, sans-serif;
}

/* LOGO */

.logo-wrap {
  text-align: center;
  padding: 60px 20px 30px;
}

.logo-wrap img {
  max-width: 220px;
}

/* HERO TITLE */

.hero {
  text-align: center;
  padding: 10px 20px 40px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  letter-spacing: .02em;
  margin: 0;
}

/* SECTION HEADERS */

h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}

/* ARTISTS */

.artists {
  padding: 40px 20px;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: auto;
}

.artist-card {
  text-decoration: none;
  color: inherit;
  text-align: center;
}

.artist-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 0.3s;
}

.artist-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.artist-name {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
}

/* ALBUM ROW */

.albums {
  padding: 50px 20px;
}

.album-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.album-row img {
  height: 160px;
  width: 160px;
  object-fit: cover;
  flex-shrink: 0;
  transition: .25s;
}

.album-row img:hover {
  transform: scale(1.05);
}

/* FOOTER */

footer {
  text-align: center;
  padding: 60px 20px;
  font-size: 14px;
  opacity: .6;
}
.bandcamp {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.bandcamp h2 {
  text-align: center;
  margin-bottom: 40px;
}

.bandcamp-grid {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: 40px;
}

.bc-player h3 {
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: .7;
}
.bc-player iframe {
  width: 100% !important;
}

