body {
  font-family: 'Georgia', serif;
  margin: 0;
  padding: 0;
  background: #1b130d; /* dark brown */
  color: #f4e7c3;
  line-height: 1.7;
}

header {
  text-align: center;
  background: linear-gradient(to bottom, #3b2a1a, #1b130d);
  color: #f4e7c3;
  padding: 40px 20px;
  border-bottom: 2px solid #d4af37;
}

h1 {
  font-size: 2.4em;
  letter-spacing: 1px;
  color: #ffd700;
}

nav {
  background-color: #2e1f13;
  padding: 10px 0;
  text-align: center;
  border-bottom: 1px solid #d4af37;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav a {
  color: #f4e7c3;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffd700;
}

section {
  padding: 60px 10%;
  text-align: center;
  border-bottom: 1px solid #4a3323;
}

h2 {
  color: #ffd700;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.artist-intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.portrait {
  width: 260px;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
  border: 2px solid #d4af37;
}

.bio {
  max-width: 600px;
  text-align: justify;
}

blockquote {
  font-style: italic;
  color: #ffdd99;
  margin-top: 15px;
  border-left: 4px solid #d4af37;
  padding-left: 10px;
}

.gallery {
  background: #2b1c10;
  border-radius: 15px;
  padding: 50px 8%;
  margin: 50px auto;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

.artworks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.artworks figure {
  max-width: 320px;
  text-align: center;
}

.artworks img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 3px solid #d4af37;
  border-radius: 10px;
  transition: transform 0.4s;
}

.artworks img:hover {
  transform: scale(1.05);
}

figcaption {
  margin-top: 10px;
  font-size: 0.95em;
  color: #f4e7c3;
}

.curator-note {
  font-style: italic;
  color: #cbb26a;
  margin-top: 25px;
}

.members-list {
  list-style: none;
  padding: 0;
  font-size: 1.1em;
  color: #f4e7c3;
}

.members-list li {
  margin: 8px 0;
}

footer {
  text-align: center;
  background: #1b130d;
  color: #cbb26a;
  padding: 20px;
  border-top: 1px solid #4a3323;
}
