.amenities-section {
  padding: clamp(48px, 7vw, 80px) 0;
  background: linear-gradient(135deg, #6f1d1b, #8a2a2a);
}

/* Container */
.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* Title */
.amenities-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(28px, 5vw, 50px);
  letter-spacing: 1px;
}

.amenities-title span {
  color: #d4af37;
  /* Gold */
}

/* Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

/* Card */
.amenity-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.amenity-card img {
  width: 100%;
  height: clamp(220px, 28vw, 300px);
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Bottom Label */
.amenity-label {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 18px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #f0c24b;
  background: rgba(120, 25, 25, 0.85);
  backdrop-filter: blur(5px);
}

/* Hover Effect */
.amenity-card:hover {
  transform: translateY(-10px);
}

.amenity-card:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .amenities-title {
    font-size: 28px;
  }

  .amenity-card img {
    height: 220px;
  }

  .amenity-label {
    padding: 14px;
    font-size: 18px;
  }
}
