body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0d2b4d;
  color: white;
  padding: 10px 20px;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo-section img {
  height: 60px;
  margin-right: 10px;
}

.contact h2 {
  margin: 0;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  color: white;
  border: none;
}

/* HERO */
.hero {
  text-align: center;
  padding: 40px;
  background: #f5f5f5;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
}

.card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card .desc {
  padding: 10px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #0d2b4d;
  color: white;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #0d2b4d;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
  }

  nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}
.amenities {
  padding: 40px 20px;
  text-align: center;
  background: #ffffff;
}

.amenities h2 {
  margin-bottom: 20px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.amenity {
  padding: 20px;
  border-radius: 10px;
  background: #f5f5f5;
  transition: transform 0.2s;
}

.amenity:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 30px;
}
.card .desc p {
  font-style: italic;
  color: #666;
  line-height: 1.6;
  font-size: 14px;
  letter-spacing: 0.2px;
}