/**
 * About Page Styles
 * Consistent with CathayPlay design system
 */

.about-page {
  min-height: 100vh;
  background-color: black;
  color: white;
  padding: 0;
  margin: 0;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 7.5vw 4rem;
}

/* Header */
.about-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-title {
  font-family: 'Diatype-bold', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Content */
.about-content {
  font-family: 'Diatype-light', sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.about-content h1 {
  font-family: 'Diatype-bold', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin: 3rem 0 1.5rem 0;
  letter-spacing: 0.02em;
}

.about-content h2 {
  font-family: 'Diatype-bold', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 2.5rem 0 1.25rem 0;
  letter-spacing: 0.02em;
}

.about-content h3 {
  font-family: 'Diatype-bold', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 2rem 0 1rem 0;
  letter-spacing: 0.02em;
}

.about-content p {
  font-family: 'Diatype-light', sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.5rem 0;
}

.about-content strong {
  font-family: 'Diatype-bold', sans-serif;
  font-weight: 700;
  color: white;
}

.about-content a {
  color: rgb(255, 221, 0);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.about-content a:hover {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-container {
    padding: 6rem 5vw 3rem;
  }

  .about-title {
    font-size: 2.5rem;
  }

  .about-content h1 {
    font-size: 2rem;
  }

  .about-content h2 {
    font-size: 1.75rem;
  }

  .about-content h3 {
    font-size: 1.25rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about-container {
    padding: 5rem 4vw 2rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-content h1 {
    font-size: 1.75rem;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  .about-content h3 {
    font-size: 1.125rem;
  }

  .about-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 4rem 3vw 2rem;
  }

  .about-title {
    font-size: 1.75rem;
  }

  .about-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .about-content h1 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
  }

  .about-content h2 {
    font-size: 1.25rem;
  }

  .about-content h3 {
    font-size: 1rem;
  }

  .about-content p {
    font-size: 0.875rem;
    margin: 0 0 1.25rem 0;
  }
}
