body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  background: #f8faf8;
  color: #222;
}

.topbar {
  background: #0a6b3a;
  color: white;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  background: #c69c34;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 600;
}

.container {
  max-width: 1000px;
  margin: 20px auto;
  padding: 16px;
}

h2 {
  color: #0a6b3a;
}

.lead {
  color: #666;
  margin-bottom: 20px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.staff-card {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.staff-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.staff-card img:hover {
  transform: scale(1.08);
}

.staff-card h3 {
  margin: 10px 0 4px;
  color: #0a6b3a;
}

.staff-card p {
  color: #666;
  font-size: 14px;
}

/* Image popup modal */
#imageModal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
}

#imageModal img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

#caption {
  color: white;
  margin-top: 10px;
  font-size: 16px;
}