/* ======================================================
   ABOUT PAGE WRAPPER
   Purpose: Controls spacing and background for About page only
   Fix: Removed forced 100vh to prevent footer from floating
====================================================== */
.about-page {
  padding: 10px 10px; /* creates breathing room below header and above footer */
  background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)),
    url("/assets/images/ICTU.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #e6e6e6;
}

/* ======================================================
   ABOUT HEADER
   Purpose: Page title and project description
====================================================== */

.about-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-logo {
  width: 45px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.about-header h1 {
  font-size: 2rem;
  color: #f1c40f;
}

.subtitle {
  color: #bdbdbd;
  font-size: 1rem;
}

/* ======================================================
   ABOUT CONTENT
   Purpose: Main text container
====================================================== */
.about-content {
  max-width: 850px;
  margin: 0 auto 60px; /* centers content and separates it from team section */
  background: rgba(15, 15, 15, 0.75);
  padding: 30px;
  border-radius: 14px;
}

.about-content h2 {
  color: #f1c40f;
}

.about-content p {
  line-height: 1.8;
}

/* ======================================================
   TEAM SECTION
   Purpose: Displays team members
====================================================== */
.team-section {
  margin-top: 70px;
  padding: 40px 20px;
  background: rgba(20, 20, 20, 0.9);
  border-radius: 16px;
  text-align: center;
}

.team-section h2 {
  color: #f1c40f;
  margin-bottom: 30px;
}

/* Team layout */
.team-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Individual team card */
.team-card {
  width: 180px;
  background: #1b1b1b;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #2f2f2f;
}

/* Placeholder image circle */
.team-photo {
  width: 90px;
  height: 90px;
  margin: 0 auto 12px;
  background: #2c2c2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* Team member text styling */
.team-name,
.team-role {
  margin: 6px 0;
}

.label {
  color: gold;
  font-weight: bold;
}

.value {
  margin-left: 6px;
}

/* ======================================================
   RESPONSIVE ABOUT PAGE
   Purpose: Mobile and tablet adjustments
====================================================== */
@media (max-width: 768px) {
  .about-content {
    padding: 22px;
  }

  .team-row {
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .team-card {
    width: 100%;
    max-width: 260px;
  }
}
