/* style/about.css */

/* --- General Styles --- */
.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default light text color for potentially dark body background */
  background-color: var(--dark-bg, #0d0d0d); /* Assuming shared --dark-bg is dark */
}

.page-about__section-padding {
  padding: 80px 20px;
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__section-title--light {
  color: #ffffff;
}

.page-about__section-description {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__section-description--light {
  color: #f0f0f0;
}

.page-about__sub-title {
  font-size: 1.8em;
  color: #ffc107; /* Auxiliary color for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-about__sub-title--light {
  color: #ffc107;
}

.page-about__text-block p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-about__text-block p a {
  color: #ffc107;
  text-decoration: none;
  font-weight: bold;
}

.page-about__text-block p a:hover {
  text-decoration: underline;
}

.page-about__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-about__list li {
  margin-bottom: 8px;
  color: #f0f0f0;
}

.page-about__list li ul {
  list-style: circle;
  margin-left: 20px;
  margin-top: 5px;
}

.page-about__btn-primary,
.page-about__btn-secondary,
.page-about__btn-link {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  box-sizing: border-box; /* Ensure padding is included in width */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-about__btn-primary {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-about__btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-about__btn-secondary {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.page-about__btn-secondary:hover {
  background-color: #ffc107;
  color: #000000;
}

.page-about__btn-primary--light {
  background-color: #ffc107;
  color: #000000;
  border: 2px solid #ffc107;
}

.page-about__btn-primary--light:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.page-about__btn-link {
  background-color: transparent;
  color: #ffc107;
  border: 1px solid #ffc107;
  padding: 8px 15px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-about__btn-link:hover {
  background-color: #ffc107;
  color: #000000;
}

/* --- Hero Section --- */
.page-about__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  box-sizing: border-box;
}

.page-about__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-about__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}