/* General */
body {
  background: #000;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  margin: 0;
  padding: 0;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #111;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: #3b82f6;
}
nav a {
  margin-left: 20px;
  text-transform: uppercase;
  font-size: 12px;
  color: #ccc;
  transition: 0.2s;
}
nav a:hover,
nav a.active {
  color: #3b82f6;
}

/* Container */
.container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

/* Artist Card */
.artist-bio-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.artist-bio-card img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}
.artist-bio-card img:hover {
  transform: scale(1.05);
}

/* Artist Info */
.artist-info {
  max-width: 600px;
  text-align: center;
}
.artist-info h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #3b82f6;
}
.genre-location {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 15px;
}
.bio {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 20px;
}

/* Artist Links as Icons - fixed size */
.artist-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.artist-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #3b82f6;
  background: transparent;
  transition: 0.2s;
  overflow: hidden; /* makes sure img doesn't spill out */
}

.artist-links a img {
  width: 60%;   /* scale down inside the circle */
  height: 60%;
  object-fit: contain;
}

.artist-links a:hover {
  background: #3b82f6;
}

.artist-links a:hover img {
  filter: brightness(0) invert(1); /* optional: invert icon color on hover */
}

/* Layout for larger screens */
@media (min-width: 768px) {
  .artist-bio-card {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    text-align: left;
  }
  .artist-info {
    text-align: left;
  }
}