/* style/about.css */

.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-about__hero {
  background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
  padding: 80px 20px;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-about__hero-content {
  max-width: 800px;
  text-align: center;
}

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

.page-about__subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-about__hero-image-wrapper {
  max-width: 600px;
  margin-top: 40px;
}

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

.page-about__button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-about__button:hover {
  background-color: #e6c200;
  color: #6a0000;
  transform: translateY(-3px);
}

.page-about__section {
  padding: 60px 20px;
  text-align: center;
}

.page-about__section--intro {
  background-color: #ffffff;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #8B0000;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

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

.page-about__content-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  text-align: left;
}

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

.page-about__text-content p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #555;
}

.page-about__text-content strong {
  color: #8B0000;
}

.page-about__image-block {
  flex: 1;
  min-width: 300px;
}

.page-about__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-about__section--mission-vision {
  background-color: #f0f0f0;
}

.page-about__mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-about__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  /* No filter property to change color */
}

.page-about__card-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-about__card p {
  color: #666;
  font-size: 1.05em;
}

.page-about__section--values {
  background-color: #ffffff;
}

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

.page-about__value-item {
  background-color: #fff8e1; /* Light gold background */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-left: 5px solid #FFD700;
}

.page-about__value-icon {
  font-size: 3em;
  margin-bottom: 15px;
  display: block;
}

.page-about__value-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-about__value-item p {
  color: #444;
  font-size: 0.95em;
}

.page-about__section--cta {
  background: #8B0000; /* Dark red background */
  color: #ffffff;
  padding: 80px 20px;
}

.page-about__cta-content {
  max-width: 900px;
}

.page-about__section--cta .page-about__section-title {
  color: #FFD700;
}

.page-about__section--cta .page-about__section-title::after {
  background-color: #ffffff;
}

.page-about__section--cta p {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

.page-about__button--primary {
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

.page-about__button--primary:hover {
  background-color: #e6c200;
  color: #6a0000;
}

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

.page-about__button--secondary:hover {
  background-color: #ffffff;
  color: #8B0000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about__hero {
    padding: 60px 15px;
  }

  .page-about__title {
    font-size: 2.5em;
  }

  .page-about__subtitle {
    font-size: 1.2em;
  }

  .page-about__section-title {
    font-size: 2em;
  }

  .page-about__content-flex {
    flex-direction: column;
  }

  .page-about__card-title {
    font-size: 1.5em;
  }

  .page-about__value-title {
    font-size: 1.3em;
  }

  .page-about__cta-buttons {
    flex-direction: column;
  }

  .page-about__button {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-about__hero {
    padding: 40px 10px;
  }

  .page-about__title {
    font-size: 2em;
  }

  .page-about__subtitle {
    font-size: 1em;
  }

  .page-about__section-title {
    font-size: 1.8em;
  }

  .page-about__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-about__card-icon {
    width: 60px;
    height: 60px;
  }
}