body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f8f8f8;
  color: #333;
}

.hero {
  height: 90vh;
  background: url("images/hero.jpg") center/cover;
  position: relative;
}

.overlay {
  background: rgba(0,0,0,0.6);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.overlay h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
}

.btn {
  margin-top: 20px;
  padding: 15px 40px;
  background: gold;
  color: black;
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 80px 10%;
}

.features {
  display: flex;
  gap: 40px;
  text-align: center;
}

.feature {
  background: white;
  padding: 40px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  flex: 1;
}

.gallery img {
  width: 22%;
  margin: 1%;
  border-radius: 10px;
}

.location iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.contact input, .contact textarea {
  padding: 15px;
  margin-bottom: 15px;
}

.contact button {
  padding: 15px;
  background: black;
  color: white;
  border: none;
}

footer {
  text-align: center;
  padding: 30px;
  background: black;
  color: white;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button:hover {
  background: gold;
  color: black;
  cursor: pointer;
}
