/* style/about.css */

/* Base styles for the About Us page content */
.page-about {
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is #000000 from shared.css */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-about__content-area {
  padding: 40px 0;
}

/* Section specific backgrounds and text colors */
.page-about__dark-bg {
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
}

.page-about__light-bg {
  background-color: #ffffff; /* White background */
  color: #333333; /* Dark text for light background */
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure header offset */
  overflow: hidden;
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3; /* Slightly dim the background image */
}

.page-about__hero-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFFF00; /* Special color for hero title for high visibility */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  color: #ffffff;
}

/* General Section Titles */
.page-about__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: inherit; /* Inherits from section background */
}

/* Paragraphs */
.page-about__paragraph {
  font-size: 1.1em;
  margin-bottom: 1em;
  color: inherit; /* Inherits from section background */
}

/* Buttons */
.page-about__btn-primary {
  display: inline-block;
  background-color: #C30808; /* Red for action buttons */
  color: #FFFF00; /* Yellow text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}