/* style/about.css */

.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark (#1a1a2e), so text is light */
  background-color: #1a1a2e;
}

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

/* Hero Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 15px;
  min-height: 600px;
  background-color: #0A2342;
  color: #ffffff;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

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

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-about__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #F5B041;
  line-height: 1.2;
}

.page-about__intro-text {
  font-size: 1.25em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background-color: #F5B041;
  color: #0A2342;
  border: 2px solid #F5B041;
}

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

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

.page-about__btn-secondary:hover {
  background-color: #F5B041;
  color: #0A2342;
}

/* Video Section */
.page-about__video-section {
  background-color: #1a1a2e;
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
}