/* Hero Section */
.hero-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/images/17.jpg');
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: -120px; /* Offset the body padding-top */
  padding-top: 120px; /* Add padding to compensate for the navbar height */
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Amenities Section */
.amenities-container {
  padding: 50px 0;
}

.amenity-section {
  margin-bottom: 80px;
}

.amenity-image {
  border-radius: 0px !important;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 400px;
}

.amenity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 0px !important;
}

.amenity-image:hover img {
  transform: scale(1.05);
}

.amenity-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.amenity-title {
  color: #333;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
  font-family: 'Merriweather', sans-serif;
}

.amenity-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50px;
  background-color: #f0b429;
}

.amenity-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* Animation Classes */
.reveal, .reveal-left, .reveal-right, .reveal-up {
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-up {
  transform: translateY(50px);
}

.reveal.active, 
.reveal-left.active, 
.reveal-right.active, 
.reveal-up.active {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.hero-fade-in {
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .amenity-section {
    margin-bottom: 50px;
  }
  
  .amenity-image {
    height: 300px;
    margin-bottom: 20px;
  }
  
  .order-md-last {
    order: 0 !important;
  }
  
  .order-md-first {
    order: 0 !important;
  }
} 