/* About Page Specific Styles */

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 4rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero h1 {
    margin-bottom: 1rem;
    color: white;
    font-size: 3rem;
}

.about-hero .hero-subtitle {
    font-size: 1.25rem;
    color: white;
    opacity: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* Ensure hero subtitle stays white by increasing specificity */
.hero.about-hero .hero-subtitle {
    color: white;
}

/* Our Story Section */
.our-story {
    padding: 5rem 0;
    background: var(--background);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.story-text h2 {
    margin-bottom: 1rem;
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.story-highlight {
    background: var(--background-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
}

.story-highlight h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 5rem 0;
    background: var(--background-alt);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mv-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.mv-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mv-card h3 {
    margin-bottom: 1rem;
}

.mv-card p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
}

.mv-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.mv-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.mv-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Leadership Section */
.leadership {
    padding: 5rem 0;
    background: var(--background);
}

.leadership h2 {
    text-align: center;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.leader-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.leader-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.leader-card h3 {
    margin-bottom: 1rem;
}

.board-list {
    list-style: none;
    margin-top: 1rem;
}

.board-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.team-member {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.team-member:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.team-member h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Impact Timeline */
.impact-section {
    padding: 5rem 0;
    background: var(--background-alt);
}

.impact-section h2 {
    text-align: center;
}

.impact-timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem 0;
}

.impact-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    width: 45%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Partners Section */
.partners {
    padding: 5rem 0;
    background: var(--background);
}

.partners h2 {
    text-align: center;
}

.partners-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1rem auto 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.partner-category {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
}

.partner-category:hover {
    transform: translateY(-5px);
}

.partner-category h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.about-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-card {
        flex: 1 1 150px;
    }
    
    .impact-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
    }
    
    .timeline-year {
        position: relative;
        left: 0;
        transform: none;
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        width: 100%;
        margin-left: 3rem !important;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 3rem !important;
    }
}