/* Hero Section */
.hero-banner {
  background-color: #333333; /* Fallback color */
  background-image: url('../images/nightview.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 450px;
  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 */
}

/* Overlay */
.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 1;
}

.hero-banner .container {
  position: relative;
  z-index: 2; /* Above the overlay */
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Activities Section */
.activities-container {
  padding: 50px 0;
}

.activity-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.activity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.activity-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.activity-card:hover .activity-image img {
  transform: scale(1.1);
}

.activity-content {
  padding: 20px;
}

.activity-title {
  color: #333;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 10px;
}

.activity-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50px;
  background-color: #f0b429;
}

.activity-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* 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;
  }
} 