/* style/about.css */

/* General styles for the about page section */
.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for general text on dark backgrounds */
    background-color: #0A192F; /* Primary dark background */
}

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

/* Hero Section */
.page-about__hero {
    background-color: #0A192F;
    background-image: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), url('[GALLERY:bg:abstract,geometric,dark]'); /* Dark overlay for text readability */
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
}

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

.page-about__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E0E0E0;
}

.page-about__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button background */
    color: #0A192F; /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-about__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    color: #000000; /* Black text on hover for better contrast */
}

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

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

@media (min-width: 768px) {
    .page-about__grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-about__grid--reverse {
        grid-template-areas: "image text";
    }
    .page-about__grid--reverse .page-about__text-content {
        grid-area: text;
    }
    .page-about__grid--reverse .page-about__image-wrapper {
        grid-area: image;
    }
}


.page-about__section-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 25px;
    font-weight: bold;
}

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

.page-about__paragraph {
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-about__paragraph--center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* Values Section */
.page-about__values {
    padding: 80px 0;
    background-color: #1A2A40; /* Slightly lighter dark background */
}

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

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

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

.page-about__value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2); /* Make icons pop */
}

.page-about__value-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

/* Why Choose Us Section */
.page-about__why-choose {
    padding: 80px 0;
    background-color: #0A192F;
}

.page-about__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-about__list li {
    background-color: #1A2A40;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    color: #E0E0E0;
    font-size: 1.1em;
}

.page-about__list li strong {
    color: #FFD700;
}

.page-about__cta-button--secondary {
    background-color: #FFD700;
    color: #0A192F;
}

.page-about__cta-button--secondary:hover {
    background-color: #e6c200;
    color: #000000;
}

/* Team Section */
.page-about__team {
    padding: 80px 0;
    background-color: #1A2A40;
}

.page-about__team-image-wrapper {
    margin-top: 40px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .page-about__hero-title {
        font-size: 2em;
    }

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

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

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

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

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

.page-about .animate-fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}