/* style/about.css */
.page-about {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #1A1A1A; /* Auxiliary dark background for hero */
}

.page-about__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
}

.page-about__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-about__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A1A1A; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-about__hero-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  color: #000000;
}

.page-about__hero-image-container {
  width: 100%;
  max-width: 1200px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-about__story-section {
  padding: 80px 20px;
  background-color: #0d0d0d;
}

.page-about__story-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-about__story-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 60px;
}

.page-about__story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.page-about__story-text {
  flex: 1;
  min-width: 300px;
}

.page-about__story-text p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-about__story-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-about__story-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about__story-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-about__story-button:hover {
  background-color: #e6c200;
}

.page-about__values-section {
  padding: 80px 20px;
  background-color: #1A1A1A;
}

.page-about__values-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-about__values-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-about__values-description {
  font-size: 1.2em;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-about__value-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-10px);
}

.page-about__value-card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-about__value-card p {
  font-size: 1em;
  line-height: 1.6;
}

.page-about__values-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-about__values-button:hover {
  background-color: #e6c200;
}

.page-about__mission-section {
  padding: 80px 20px;
  background-color: #0d0d0d;
}

.page-about__mission-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.page-about__mission-image {
  flex: 1;
  min-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about__mission-content {
  flex: 1;
  min-width: 300px;
}

.page-about__mission-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-about__mission-content p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-about__mission-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-about__mission-button:hover {
  background-color: #e6c200;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }

  .page-about__hero-description {
    font-size: 1.1em;
  }

  .page-about__story-grid, .page-about__mission-container {
    flex-direction: column;
  }

  .page-about__mission-image {
    order: -1; /* Image above text on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 40px 15px;
  }

  .page-about__hero-title {
    font-size: 2.2em;
  }

  .page-about__hero-description {
    font-size: 1em;
  }

  .page-about__hero-button, .page-about__story-button, .page-about__values-button, .page-about__mission-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-about__story-section, .page-about__values-section, .page-about__mission-section {
    padding: 60px 15px;
  }

  .page-about__story-title, .page-about__values-title, .page-about__mission-title {
    font-size: 2.2em;
  }

  .page-about__values-grid {
    grid-template-columns: 1fr;
  }

  .page-about__story-text p, .page-about__mission-content p {
    font-size: 0.95em;
  }

  /* Ensure images do not overflow on mobile */
  .page-about img {
    max-width: 100%;
    height: auto;
  }

  .page-about__story-image, .page-about__mission-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }

  .page-about__story-title, .page-about__values-title, .page-about__mission-title {
    font-size: 1.8em;
  }
}