body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.hero {
  background: url('https://images.unsplash.com/photo-1633681926035-ec1ac984418a?q=80&w=1170') no-repeat center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}


.overlay {
  background: rgba(0,0,0,0.6);
  padding: 40px;
  text-align: center;
  border-radius: 10px;
}

.btn {
  background: #d4a017;
  padding: 12px 25px;
  text-decoration: none;
  color: white;
  display: inline-block;
  margin-top: 15px;
  border-radius: 5px;
}

/* ABOUT */
.about {
  padding: 60px 20px;
  text-align: center;
  background: #fff5e6;
}

.about h2 {
  margin-bottom: 15px;
  font-size: 32px;
}

.about p {
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

/* SERVICES */
.services {
  padding: 60px 20px;
  text-align: center;
}

.services h2 {
  margin-bottom: 30px;
}

.services .grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #fff0d9;
  padding: 25px;
  border-radius: 10px;
  width: 220px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* GALLERY */
.gallery {
  padding: 60px 20px;
  text-align: center;
  background: #fff5e6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 10px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
}

/* BOOKING */
.booking {
  padding: 60px 20px;
  text-align: center;
}

.booking form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking input,
.booking button {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.booking button {
  background: #d4a017;
  color: white;
  border: none;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
  }

  .overlay h1 {
    font-size: 24px;
  }

  .card {
    width: 100%;
  }
}