/* Hero section overlay style */
.hero-section {
  position: relative;
  height: 300px;
  margin-top: -120px;
  padding-top: 120px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-caption {
  z-index: 2;
}

.hero-caption h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Team cards hover effect */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* 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);
}

.animate-fade-in {
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive styles */
@media (max-width: 768px) {
  .hero-caption h1 {
    font-size: 2.5rem;
  }
} 