@charset "utf-8";
/* artists.css */

body.artist-page {
  background-color: #f7f7f7;
  color: #1a1a1a;
  font-family: 'Syne', sans-serif;
}

/* Hero Image with Overlayed Name */
.artist-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.artist-hero h1 {
  color: #E9FF32;
  font-size: 9rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

/* Bio Content Section */
.artist-bio-section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
}


.artist-bio-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 5rem;
}

.artist-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.artist-images img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .artist-hero h1 {
    font-size: 2.25rem;
    padding: 0 1rem;
  }

  .artist-bio-section {
    padding: 1rem;
  }
}

.footer {
  background-color: #ffffff;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  font-family: Courier New, 'monospace';
}
