
body {
  font-family: 'Outfit', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}
header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  text-decoration: none;
  color: #333;
}
.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-text {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 3rem;
}
.hero-buttons .btn {
  display: inline-block;
  margin: 1rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  background: #ff5a5f;
  color: white;
  border-radius: 5px;
}
.btn.whatsapp {
  background: #25D366;
}
section {
  padding: 4rem 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.facilities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: auto;
}
input[type="text"],
input[type="email"] {
  padding: 0.5rem;
  font-size: 1rem;
}
input[type="submit"] {
  background: #007BFF;
  color: white;
  border: none;
  padding: 0.75rem;
  cursor: pointer;
}
