/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
/* About Us Page */


/* Hero Section */
.about-us-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  background: url("/images/the-difference-between-a-group-and-a-team.avif") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  text-align: center;
}

.about-us-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.about-us-hero .about-us-hero-overlay {
  position: relative;
  z-index: 1;
  padding: 1rem;
}

.about-us-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.about-us-hero p {
  font-size: 1.25rem;
}


.about-us-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: var(--light-color);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.about-us-section h2 {
  font-size: 2rem;
  color: var(--secondary-color);
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.about-us-section p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.team-member {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform var(--transition-speed);
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-member .member-info {
  padding: 1rem;
}

.member-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.member-info p {
  font-size: 1rem;
}

@media (max-width: 1250px) {
  .about-us-hero h1 {
    font-size: 2.5rem;
  }
  .about-us-hero p {
    font-size: 1.1rem;
  }
}
