/* Bio Page Styling - Blending current design with modern GTP-inspired elements */

.bio-nav {
  background-color: #ff6961;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 0.8;
}

.bio-hero {
  background: linear-gradient(135deg, #ff6961 0%, #ff8c94 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: #ffffff;
}

.bio-hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.bio-name {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #ffffff;
}

.bio-tagline {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: #ffffff;
  opacity: 0.95;
}

.bio-location {
  font-size: 1.3rem;
  font-weight: 300;
  color: #ffffff;
  opacity: 0.9;
}

.bio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.bio-intro {
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.bio-intro-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #333333;
  text-align: justify;
  max-width: 900px;
  margin: 0 auto;
}

.companies-section {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #333333;
  font-weight: 400;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.company-card {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.company-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.company-name {
  font-size: 2rem;
  color: #ff6961;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.company-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.company-link {
  display: inline-block;
  color: #ff6961;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.company-link:hover {
  color: #ff8c94;
  border-bottom-color: #ff8c94;
}

.achievements-section {
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.achievement-item {
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #ff6961;
  transition: background-color 0.3s ease;
}

.achievement-item:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.achievement-item h4 {
  font-size: 1.5rem;
  color: #333333;
  margin-bottom: 1rem;
  font-weight: 500;
}

.achievement-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
  text-align: justify;
}

.vision-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #ff6961 0%, #ff8c94 100%);
  color: #ffffff;
}

.vision-text {
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: justify;
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .bio-name {
    font-size: 2.5rem;
  }

  .bio-tagline {
    font-size: 1.4rem;
  }

  .bio-location {
    font-size: 1.1rem;
  }

  .bio-intro-text {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .companies-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .company-card {
    padding: 2rem;
  }

  .company-name {
    font-size: 1.7rem;
  }

  .company-description {
    font-size: 1rem;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .achievement-item {
    padding: 1.5rem;
  }

  .vision-text {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 480px) {
  .bio-hero {
    padding: 3rem 1.5rem;
  }

  .bio-name {
    font-size: 2rem;
  }

  .bio-tagline {
    font-size: 1.2rem;
  }

  .bio-container {
    padding: 0 1rem;
  }

  .bio-intro,
  .companies-section,
  .achievements-section,
  .vision-section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

