/*
 * Styles for the Team Section
 */

.team-section {
  background: #111827; /* Dark background to match the theme */
  overflow: hidden;
  padding: 60px 0;
  font-family: 'Ubuntu', sans-serif;
  color: #ffffff;
}

@media (min-width: 768px) {
  .team-section {
    padding: 100px 0;
  }
}

.team-section-heading {
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #ffffff;
}

@media (min-width: 768px) {
  .team-section-heading {
    font-size: 3rem;
  }
}

.team-section-sub-heading {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #d1d5db; /* Lighter gray for sub-headings */
}

.team-member-card {
    margin-top: 3rem;
}

.team-member-content * {
  color: #ffffff;
}

.team-member-content h4 {
    font-size: 1.8rem;
    font-weight: bold;
}

.team-member-content p.title {
    font-size: 1.1rem;
    color: #008B8B; /* Changed to match navbar */
    font-weight: 500;
}

.team-member-content p.description {
  opacity: 0.8;
  text-align: justify;
}


.team-member-social-links a {
  display: inline-block;
  opacity: 0.7;
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out, color 0.25s ease-in-out;
  font-size: 1.2rem;
  color: #ffffff;
}

.team-member-social-links a:hover {
  transform: translateY(-5px);
  color: #008B8B; /* Changed to match navbar */
  opacity: 1;
}

.team .t-head img {
    width: 70px !important;
    height: 70px !important;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
}
