* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0e0e0e;
  color: #eaeaea;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
}

.hero {
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
}

.hero p {
  letter-spacing: 3px;
  margin-top: 10px;
}

section {
  padding: 120px 10%;
}

.artist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.artist img {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.gallery h2 {
  margin-bottom: 60px;
}

.artwork {
  margin-bottom: 100px;
}

.artwork img {
  width: 100%;
  filter: grayscale(100%);
  transition: 0.5s;
}

.artwork img:hover {
  filter: grayscale(0%);
}

.caption {
  margin-top: 15px;
  font-style: italic;
}

.contact a {
  color: #cfa15a;
  text-decoration: none;
}

footer {
  padding: 40px;
  text-align: center;
  background: #000;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .artist {
    grid-template-columns: 1fr;
  }
}
