/* css/about.css */

/* --- About Page Hero Section --- */
.hero-about {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative; 
    color: var(--neutral-white);
    padding: calc(var(--spacing-unit) * 5) 0;
    text-align: center;
}

.hero-about .hero-overlay { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 30, 60, 0.65); 
    z-index: 1;
}

.hero-about .container { 
    position: relative;
    z-index: 2;
}

/* Typography specific to hero-about if different from global */
.hero-about h1 {
    color: var(--neutral-white); /* Already global, but can be here if specific */
    /* font-size: 2.8rem; */ /* Assuming global h1 style is fine */
}

.hero-about .hero-subtext {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
    margin: var(--spacing-unit) auto 0 auto;
}

/* --- Our Story Section --- */
.our-story h2 {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 1.5); 
}
.our-story p {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.our-story p:first-of-type { 
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}


/* --- Mission & Values Section --- */
.mission-values h2 {
    text-align: center;
}
.mission-statement {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    max-width: 800px;
    margin: 0 auto calc(var(--spacing-unit) * 2) auto;
    padding: var(--spacing-unit);
    border-left: 4px solid var(--primary-teal);
    background-color: rgba(0, 128, 128, 0.03); 
}
.mission-statement strong {
    color: var(--primary-blue);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
    margin-top: calc(var(--spacing-unit) * 2);
}
.value-item {
    background-color: var(--neutral-white);
    padding: calc(var(--spacing-unit) * 1.5);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.value-icon {
    color: var(--primary-teal);
    margin-bottom: var(--spacing-unit);
}
.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}
.value-item p {
    font-size: 0.95rem;
    color: var(--neutral-dark-gray);
    margin-bottom: 0;
}

/* --- Leadership Team Section --- */
.leadership-team h2 {
    text-align: center;
}
.leader-profile-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: calc(var(--spacing-unit) * 2.5);
    margin-top: calc(var(--spacing-unit) * 2);
}
.leader-profile {
    display: flex;
    flex-direction: column; 
    align-items: center;
    background-color: var(--neutral-light-gray);
    padding: calc(var(--spacing-unit) * 2);
    border-radius: var(--border-radius);
    text-align: center;
}
.leader-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: var(--spacing-unit);
    border: 5px solid var(--neutral-white);
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.leader-info h3 {
    font-size: 1.5rem;
    margin-bottom: calc(var(--spacing-unit) * 0.25);
}
.leader-info .title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: var(--spacing-unit);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.leader-info p {
    font-size: 0.95rem;
    color: var(--neutral-dark-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- Veteran-Owned Business Section --- */
.veteran-owned h2 {
    text-align: center;
}
.veteran-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
    margin-top: var(--spacing-unit);
}
.veteran-text {
    flex: 2; 
    text-align: left;
}
.veteran-text h2 {
    text-align: left; 
    margin-bottom: var(--spacing-unit);
}
.veteran-text p {
    font-size: 1.05rem;
}
.veteran-visual {
    flex: 1;
    text-align: center;
}
.veteran-visual img {
    max-width: 100%;
    max-height: 200px; 
    width: auto;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}
.veteran-visual .caption {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--neutral-dark-gray);
    margin-bottom: 0;
}

/* --- Our Locations Section --- */
.our-locations h2 {
    text-align: center;
}
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
    margin-top: calc(var(--spacing-unit) * 2);
}
.location-card {
    background-color: var(--neutral-light-gray);
    padding: calc(var(--spacing-unit) * 1.5); 
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column; 
}
.location-image {
    width: 100%;
    height: 180px; 
    object-fit: cover; 
    border-radius: var(--border-radius) var(--border-radius) 0 0; 
    margin-bottom: var(--spacing-unit);
}
.location-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: calc(var(--spacing-unit) * 0.5); 
    display: flex;
    align-items: center;
    justify-content: center;
}
.location-card h3 i {
    margin-right: 8px;
    color: var(--primary-teal);
}
.location-card .location-description {
    font-size: 0.95rem;
    color: var(--neutral-dark-gray);
    margin-bottom: 0; 
    flex-grow: 1; 
}


/* --- Client Partnerships Section --- */
.client-partnerships h2 {
    text-align: center;
}
.client-partnerships p {
    font-size: 1.05rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify; 
}

/* --- Careers Section --- */
.careers h2 {
    margin-bottom: var(--spacing-unit);
}
.careers p {
    max-width: 600px;
    margin: 0 auto calc(var(--spacing-unit) * 1.5) auto;
    font-size: 1.05rem;
}
/* .careers .btn-primary { font-weight: bold; } -- Covered by global .btn styles */

/* --- Final CTA Section (This is likely global, defined in style.css or homepage.css) --- */
/* If you had specific styles for #about-page .final-cta, they would go here */
/* e.g. #about-page .final-cta { background: some-other-gradient; } */


/* --- Responsive Adjustments for About Page Specific Sections --- */
@media (min-width: 768px) {
    .leader-profile {
        flex-direction: row; 
        text-align: left;
        align-items: flex-start; 
    }
    .leader-photo {
        margin-right: calc(var(--spacing-unit) * 2);
        margin-bottom: 0; 
        flex-shrink: 0; 
    }
    .leader-info {
        flex-grow: 1;
    }

    .veteran-content-wrapper {
        flex-direction: row;
        align-items: flex-start; 
    }
    .veteran-text h2 { /* Already text-align: left from above, good */ }
    .veteran-text { /* Already text-align: left from above, good */ }
}

@media (min-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 767px) {
    /* .hero-about h1 { font-size: 2.4rem; } -- Handled by global h1 in media query */
    /* .hero-about .hero-subtext { font-size: 1.1rem; } -- No specific override needed */

    .mission-statement {
        font-size: 1.1rem;
    }
    .value-item h3 { font-size: 1.3rem; }

    .leader-info p {
        text-align: left; /* Maintain left align on mobile for readability */
    }
     .veteran-text p {
        text-align: left; /* Maintain left align */
    }
    .veteran-text h2 {
        text-align: center; /* Center heading on mobile if stacked */
    }
    .client-partnerships p {
        text-align: left; /* Or justify if preferred, but left is often better on small screens */
    }
    .veteran-text, .veteran-visual { /* Center wrapping containers if needed */
        text-align: center;
    }
}