/* style/about.css */

/* General page styling */
.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

.page-about__section-title {
    font-size: 2.5em;
    color: #004AAD;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

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

.page-about__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

.page-about__paragraph--light {
    color: #e0e0e0;
}

.page-about__keyword {
    font-weight: bold;
}

/* Buttons */
.page-about__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.page-about__btn--primary {
    background-color: #FFD700;
    color: #004AAD;
    border: 2px solid #FFD700;
}

.page-about__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-about__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-about__btn--secondary:hover {
    background-color: #FFD700;
    color: #004AAD;
}

/* Hero Section */
.page-about__hero-section {
    background: linear-gradient(135deg, #004AAD, #2a6bb5);
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
}

.page-about__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f8ff;
}

/* Story Section */
.page-about__story-section {
    padding: 80px 0;
    background-color: #fff;
}

.page-about__grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.page-about__grid--2-col {
    grid-template-columns: 1fr 1fr;
}

.page-about__image-wrapper {
    text-align: center;
}

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

/* Mission & Vision Section */
.page-about__mission-vision-section {
    background-color: #004AAD;
    padding: 80px 0;
    color: #fff;
}

.page-about__card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

/* Values Section */
.page-about__values-section {
    padding: 80px 0;
    background-color: #f0f2f5;
}

.page-about__grid--3-col {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-about__value-item {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px 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: #004AAD;
    margin-bottom: 15px;
}

/* Call to Action Section */
.page-about__cta-section {
    background-color: #1a5ca7;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

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

.page-about__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f8ff;
}

.page-about__cta-description a {
    color: #FFD700;
    text-decoration: underline;
}

.page-about__cta-description a:hover {
    color: #fff;
}

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

/* Links within content */
.page-about__paragraph a {
    color: #004AAD;
    text-decoration: underline;
}

.page-about__paragraph a:hover {
    color: #FFD700;
}

/* Animation for JS */
.page-about__story-section, 
.page-about__mission-vision-section, 
.page-about__values-section, 
.page-about__cta-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-about__story-section.is-visible, 
.page-about__mission-vision-section.is-visible, 
.page-about__values-section.is-visible, 
.page-about__cta-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-about__grid--2-col {
        grid-template-columns: 1fr;
    }

    .page-about__story-section .page-about__image-wrapper {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-about__hero-title {
        font-size: 2.8em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__cta-title {
        font-size: 2.2em;
    }
    .page-about__grid--3-col {
        grid-template-columns: 1fr;
    }
    .page-about__btn {
        margin-left: 0;
        width: 100%;
        margin-bottom: 15px;
    }
    .page-about__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-about__btn--secondary {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 2.2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
    .page-about__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}