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

header {
  background: #2c3e50;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
}

nav a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
}

.hero {
  height: 80vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2');
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.btn {
  background: #1abc9c;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.features {
  padding: 40px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.card {
  background: #ecf0f1;
  padding: 20px;
  border-radius: 8px;
}

.contact {
  padding: 40px;
  text-align: center;
}

footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 10px;
}
.gallery {
  padding: 40px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  height: 200px;
  object-fit: cover;
}

.book-btn {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 9999;
}

.book-btn img {
  width: 20px;
  height: 20px;
}
