
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #f4e9dc;
}
header {
  background-color: #111;
  padding: 1.5rem;
  text-align: center;
}
header h1 {
  color: #d4af37; /* gold accent */
  margin: 0;
}
nav a {
  color: #d4af37;
  margin: 0 12px;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover {
  text-decoration: underline;
}
main {
  padding: 2rem;
  background-color: rgba(0,0,0,0.7);
  min-height: 60vh;
}
footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 1rem;
}
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-decoration: none;
  z-index: 1000;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}
.gallery img {
  width: 100%;
  border-radius: 8px;
}
h2 {
  color: #d4af37;
  margin-top: 0;
}
