/* TEAM SECTION */
.team-section {
  padding: 10px 20px;
  background: var(--soft-grey);
}

.team-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--eco-green-dark);
  margin-bottom: 40px;
}

/* Grid Layout */
.team-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Individual Member Box */
.team-member {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease-in-out;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Image Styling */
.team-image img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid var(--eco-green);
}

/* Text */
.team-info h3 {
  font-size: 1.3rem;
  color: var(--carbon-black);
  margin-bottom: 5px;
}

.team-info h4 {
  font-size: 1rem;
  color: var(--eco-green-dark);
  margin-bottom: 10px;
}

.team-info p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Social Icons */
.social-links a {
  display: inline-block;
  margin: 0 8px;
  font-size: 1.2rem;
  color: var(--eco-green);
  transition: 0.3s;
}

.social-links a:hover {
  color: var(--mountain-purple);
}
