/* static/css/board.css - BOARD PAGE SPECIFIC STYLES */
.board-hero-bg {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #b8860b 100%);
  position: relative;
}

.board-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/static/img/board-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

/* Additional stagger animations */
.stagger-7 {
  animation-delay: 0.7s;
}

.stagger-8 {
  animation-delay: 0.8s;
}

/* Enhanced hover effects for board page */
.hover-lift:hover {
  transform: translateY(-4px);
}

.hover-glow:hover {
  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.15);
}

/* Glass card effect */
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Board card styles */
.board-card {
  transition: all 0.3s ease;
}

.board-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Executive card styles */
.executive-card {
  transition: all 0.3s ease;
}

.executive-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(30, 58, 138, 0.15);
}

/* Member photo placeholder */
.member-photo {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

/* Board page specific responsive adjustments */
@media (max-width: 768px) {
  .board-hero-bg::before {
    opacity: 0.1;
  }
  
  .executive-card:hover {
    transform: translateY(-4px);
  }
  
  .board-card:hover {
    transform: translateY(-3px);
  }
}