/* style/about.css */

/* Base styles for the about page */
.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark backgrounds */
  background-color: #1A202C; /* Main dark background */
}

.page-about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-about-section {
  padding: 60px 0;
}

.page-about-section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold accent for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

/* Hero Section */
.page-about-hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-about-hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main hero title */
  font-weight: bold;
}

.page-about-hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-about-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1em;
  margin: 10px;
  cursor: pointer;
}

.page-about-btn-primary {
  background-color: #FFD700; /* Gold */
  color: #1A202C; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-about-btn-primary:hover {
  background-color: #e6c200; /* Slightly darker gold */
  border-color: #e6c200;
}

.page-about-btn-secondary {
  background-color: #1A202C; /* Dark background */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-about-btn-secondary:hover {
  background-color: #2c3644;
  color: #e6c200;
  border-color: #e6c200;
}

.page-about-btn-outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-about-btn-outline:hover {
  background-color: #FFD700;
  color: #1A202C;
}

/* Mission Section */
.page-about-mission {
  background-color: #2C3540; /* Slightly lighter dark background */
}

.page-about-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.page-about-text-content {
  flex: 1;
  max-width: 600px;
  text-align: center;
}

.page-about-text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #C0C0C0;
}

.page-about-text-content strong {
  color: #FFD700;
}

.page-about-image-wrapper {
  flex: 1;
  max-width: 500px;
}

.page-about-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Values Section */
.page-about-values {
  background-color: #1A202C;
}

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

.page-about-value-item {
  background-color: #2C3540;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about-value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.page-about-value-item h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-about-value-item p {
  color: #C0C0C0;
}

.page-about-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

/* Call to Action Section */
.page-about-cta {
  background-color: #2C3540;
  text-align: center;
  padding: 80px 0;
}

.page-about-cta-content {
  max-width: 800px;
}

.page-about-cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-about-cta-description {
  font-size: 1.2em;
  color: #C0C0C0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-about-content-wrapper {
    flex-direction: row;
    text-align: left;
  }

  .page-about-text-content {
    text-align: left;
    max-width: none;
  }

  .page-about-image-wrapper {
    order: 2; /* Image on right */
  }

  .page-about-mission .page-about-text-content {
    padding-right: 40px;
  }
}

@media (max-width: 767px) {
  .page-about-hero-title {
    font-size: 2.5em;
  }
  .page-about-hero-subtitle,
  .page-about-text-content p,
  .page-about-cta-description {
    font-size: 1em;
  }
  .page-about-section-title,
  .page-about-cta-title {
    font-size: 2em;
  }
  .page-about-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about-grid {
    grid-template-columns: 1fr;
  }
  .page-about-content-wrapper {
    flex-direction: column;
  }
}