body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fffafc;
  color: #444;
}

/* Banner */
.banner {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  filter: brightness(80%);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid white;
  margin-bottom: 10px;
}

.overlay h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  margin: 5px 0;
}

.subtitle {
  font-size: 0.9em;
  opacity: 0.9;
}

nav {
  margin-top: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  border-bottom: 2px solid white;
}

/* Sections */
.section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

.section.light {
  background-color: #fdf7fa;
  border-radius: 20px;
}

h2 {
  font-family: 'Playfair Display', serif;
  color: #c07ab8;
  text-align: center;
}

.quote {
  font-style: italic;
  text-align: center;
  color: #888;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.85em;
  color: #777;
}
