body {
  font-family: Georgia, serif;
  background-color: #fffaf0; /* soft yellow */
  color: #4a3b2c;
}

.navbar {
  background-color: #f7c1cc; /* light pink */
}

.navbar-brand,
.nav-link {
  color: #4a3b2c;
  font-weight: bold;
}

.nav-link:hover {
  text-decoration: underline;
}

.hero {
  background-color: #fff3b0; /* pastel yellow */
  padding: 2.5rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.content {
  margin-bottom: 3rem;
}

h1, h2 {
  color: #b85c73;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}

.gallery img {
  width: 200px;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.05);
}

footer {
  background-color: #f7c1cc;
  text-align: center;
  padding: 1rem;
  font-weight: bold;
}
