/* Staff Page Styling */
body {
  background: linear-gradient(135deg, #1d4350, #a43931);
  color: #f5f5f5;
  font-family: "Ubuntu Condensed", sans-serif;
  margin: 0;
  padding: 0;
}

/* Section */
.staff {
  text-align: center;
  max-width: 1100px;
  margin: 80px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
}

.staff h2 {
  font-size: 2.2rem;
  color: #ffd369;
}

.staff .intro {
  font-size: 1.1rem;
  margin: 20px auto 50px auto;
  max-width: 700px;
}

/* Staff Cards */
.staff-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.staff-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.staff-card img {
  width: 100%;
  height: 250px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
  object-position: center;
}

.staff-card h3 {
  margin: 10px 0 5px 0;
  font-size: 1.4rem;
  color: #ffb347;
}

.staff-card p {
  font-size: 1rem;
  color: #eee;
}

.staff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  cursor: pointer;
}
