/* css styles */

/* Set the whole page background */
body {
  background-color: #EBDFCC; /* Replace with your sand color (e.g., #F5E8C7) */
}

/* Optional: Adjust navbar/footer to match */
.navbar {
  background-color: #EBDFCC !important; /* Match sand color */
  border-bottom: 1px solid #D4C9A8; /* Subtle border for contrast */
}


/* Committee Grid */
.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.member-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
}

.member-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}

.member-card a img {
  transition: transform 0.3s ease;
}

.member-card a:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}