/* style/about.css */

/* General page styling */
.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333; /* Default text color on light backgrounds */
}

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

.page-about__title {
    font-size: 3em;
    color: #FFD700; /* Gold for main titles on dark backgrounds */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-about__subtitle {
    font-size: 1.2em;
    color: #E0E0E0; /* Light grey for subtitles on dark backgrounds */
    text-align: center;
    margin-bottom: 40px;
}

.page-about__heading {
    font-size: 2.5em;
    color: #0A2463; /* Deep blue for section headings */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-about__heading--white {
    color: #FFD700; /* Gold for headings on dark CTA background */
}

.page-about__text {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-about__text--white {
    color: #E0E0E0; /* Light grey for text on dark CTA background */
}

/* Buttons */
.page-about__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}

.page-about__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2463; /* Deep blue text */
    border: 2px solid #FFD700;
    margin-right: 15px;
}

.page-about__button--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    color: #000;
}

.page-about__button--secondary {
    background-color: #0A2463; /* Deep blue button */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    margin-right: 15px;
}

.page-about__button--secondary:hover {
    background-color: #061840; /* Darker blue on hover */
    color: #FFD700;
}

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

.page-about__button--download:hover {
    background-color: #FFD700;
    color: #0A2463;
}

/* Hero Section */
.page-about__hero {
    background: linear-gradient(135deg, #0A2463 0%, #061840 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about__hero .page-about__container {
    position: relative;
    z-index: 1;
}

.page-about__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1; /* Subtle background image */
    z-index: 0;
}

/* Mission & Vision Section */
.page-about__mission-vision {
    padding: 60px 0;
    background-color: #f8f8f8; /* Light background */
}

.page-about__mission-vision .page-about__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

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

.page-about__mission-vision .page-about__image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Values Section */
.page-about__values {
    padding: 60px 0;
    background-color: #fff;
}

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

.page-about__value-item {
    text-align: center;
    padding: 30px;
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.page-about__value-item:hover {
    transform: translateY(-5px);
}

.page-about__value-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-about__value-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-about__value-description {
    font-size: 1em;
    color: #666;
}

/* Call to Action Section */
.page-about__cta {
    background: linear-gradient(90deg, #0A2463, #1e428c); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
}

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

/* Animation classes for JS interaction */
.page-about--hidden {
    opacity: 0;
    transform: translateY(20px);
}
.page-about--fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-about__title {
        font-size: 2.2em;
    }

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

    .page-about__mission-vision .page-about__container {
        flex-direction: column;
    }

    .page-about__mission-vision .page-about__image {
        max-width: 100%;
    }

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

    .page-about__button {
        padding: 12px 25px;
        font-size: 0.9em;
        margin-bottom: 10px;
    }
}

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

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

    .page-about__heading {
        font-size: 1.8em;
    }

    .page-about__hero, .page-about__cta {
        padding: 50px 0;
    }
    .page-about__button {
        display: block;
        margin: 10px auto;
    }
}