@import url(style.css);
.staff {
  background-color: #0f172a;
  padding: 80px 40px;
  text-align: center;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #a1caff;
  margin-bottom: 50px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.staff-member {
  background-color: #1e293b;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.staff-member:hover {
  transform: translateY(-10px);
}

.staff-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid #ff6f61;
  object-fit: cover;
}

.staff-member h3 {
  font-size: 1.4rem;
  color: #d1d5db;
  margin-bottom: 5px;
}

.staff-member .role {
  font-size: 1rem;
  color: #ff6f61;
  font-weight: bold;
  margin-bottom: 10px;
}

.staff-member .bio {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.4;
}
