body {
  font-family: 'Quicksand', sans-serif;
  background-color: #f5ede3;
  color: #4b3b2b;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #d9c3a9;
  border-bottom: 3px solid #b19373;
}

header h1 {
  font-family: 'Playfair Display', serif;
  margin: 0;
  font-size: 2.5rem;
}

header p {
  font-style: italic;
  color: #6d5a45;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem auto;
  max-width: 900px;
}

.gallery img {
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.about {
  background-color: #efe2d0;
  border-radius: 15px;
  max-width: 700px;
  margin: 2rem auto;
  padding: 1.5rem 2rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.about h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
  color: #3e2f21;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #d9c3a9;
  border-top: 3px solid #b19373;
  color: #4b3b2b;
}

footer a {
  color: #7b5e43;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
