/* style/about.css */

/* General Page Styling */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey text for contrast on dark backgrounds */
    background-color: #0A246A; /* Primary dark blue background */
    line-height: 1.6;
}

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

.page-about__section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-about__section:nth-of-type(even) {
    background-color: #081D58; /* Slightly lighter dark blue for subtle contrast */
}

.page-about__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 30px;
    text-align: left;
    font-weight: bold;
}

.page-about__section-title--center {
    text-align: center;
}

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

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

/* Hero Section */
.page-about__hero-section {
    background: linear-gradient(135deg, #0A246A 0%, #000000 100%); /* Dark blue to black gradient */
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-about__hero-description {
    font-size: 1.3em;
    color: #F0F0F0; /* Light text for description */
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.page-about__btn--primary {
    background-color: #FFD700; /* Gold background */
    color: #0A246A; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-about__btn--primary:hover {
    background-color: #E0B300; /* Darker gold on hover */
    border-color: #E0B300;
    transform: translateY(-3px);
}

.page-about__btn--secondary {
    background-color: #0A246A; /* Dark blue background */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #0A246A; /* Dark blue text */
    transform: translateY(-3px);
}

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

.page-about__btn--outline:hover {
    background-color: #FFD700;
    color: #0A246A;
    transform: translateY(-3px);
}

/* Grid Layout for sections */
.page-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-about__grid--reverse {
    grid-template-areas: "image text"; /* Default order */
}

.page-about__grid--reverse .page-about__image-wrapper {
    grid-area: image;
}

.page-about__grid--reverse .page-about__text-content {
    grid-area: text;
}

/* Image Styling */
.page-about__image-wrapper {
    text-align: center;
}

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

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

.page-about__value-item {
    background-color: #081D58; /* Lighter dark blue for item background */
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__value-item:hover {
    transform: translateY(-10px);
    background-color: #0A246A; /* Darker on hover */
}

.page-about__value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-about__value-item h3 {
    font-size: 1.5em;
    color: #FFD700; /* Gold for value titles */
    margin-bottom: 15px;
}

.page-about__value-item p {
    font-size: 1em;
    color: #D0D0D0;
}

/* CTA Section */
.page-about__cta {
    background: linear-gradient(45deg, #0A246A, #1C3A80); /* Subtle gradient for CTA */
    text-align: center;
    padding: 100px 0;
}

.page-about__cta-title {
    font-size: 3em;
    color: #FFD700; /* Gold for CTA title */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-about__cta-description {
    font-size: 1.2em;
    color: #F0F0F0;
    max-width: 900px;
    margin: 0 auto 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__hero-title {
        font-size: 2.8em;
    }

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

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

    .page-about__grid--reverse {
        grid-template-areas: unset;
    }

    .page-about__grid .page-about__image-wrapper, 
    .page-about__grid .page-about__text-content {
        grid-area: unset;
    }
    
    .page-about__grid .page-about__image-wrapper {
        order: -1; /* Image appears first on mobile for some sections */
    }

    .page-about__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-about__section {
        padding: 60px 0;
    }

    .page-about__hero-title {
        font-size: 2.2em;
    }

    .page-about__hero-description {
        font-size: 1.1em;
    }

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

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

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

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

    .page-about__cta-description {
        font-size: 1em;
    }
}

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

    .page-about__hero-description {
        font-size: 0.95em;
    }

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

    .page-about__btn {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }

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