/*! About Us */
.about-banner {
  background-image: url("/assets/banner-about.png");
  background-size: cover;
  background-position: initial;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.about-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.about-banner-title {
  font-size: 3rem;
  font-weight: 400;
  z-index: 1;
}

.about-title {
  color: black;
  font-size: 1.1rem;
  font-weight: 600;
}

.about-section {
  padding: 4rem 2rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-banner-title img {
  width: 100px;
  height: 100px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header img {
  width: 200px;
  height: 200px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  margin-top: 0.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header b {
  font-weight: 700;
  color: var(--primary-color);
}

/* Cards Grid */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgb(209, 29, 35, 0.5);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--primary-hover-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 15px rgb(209, 29, 35, 0.5);
}

.about-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-hover-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.about-card:hover .card-icon {
  transform: rotate(360deg) scale(1.1);
}

.card-title {
  font-size: 1.5rem;
  color: var(--dark-bg-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.card-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
}

/* Stats Section */
/* TODO For Future Updates */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  padding: 3rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}
/* TODO For Future Updates */

/* ! Member Card Section */
.team-section {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  color: white;
}

.section-header h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
  font-weight: bold;
}

.section-header p {
  font-size: 1.1em;
  opacity: 0.9;
  color: black;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.member-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgb(209, 29, 35, 0.5);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgb(209, 29, 35, 0.5);
}

.member-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 15px;
  background: var(--primary-color-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  color: white;
  font-weight: bold;
}

.member-name {
  font-size: 1.2em;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.member-role {
  color: var(--primary-color);
  font-size: 0.95em;
  font-weight: 500;
}

/* ! Fade Up Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ! Responsive */
@media (max-width: 1307px) {
  .team-section {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .about-section {
    padding: 3rem 1.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .about-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-card {
    padding: 2rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 480px) {
  .section-header h2 {
    font-size: 1.8rem;
  }

  .about-card {
    padding: 1.5rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}
