/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--color-emerald) 0%, #0d3a23 100%);
    color: var(--color-white);
    padding: var(--space-16) 0 var(--space-12);
    text-align: center;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M1200 120L0 16.48V0h1200z" fill="%23ffffff" fill-opacity="0.1"/></svg>') bottom center no-repeat;
    background-size: cover;
    opacity: 0.1;
}

.about-hero h1 {
    color: var(--color-white);
    margin-bottom: var(--space-4);
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    color: var(--color-white);
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Mission & Vision Section */
.mission-vision {
    background: var(--color-white);
    padding: var(--space-12) 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card,
.vision-card {
    background: #f9fafb;
    padding: var(--space-8);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--color-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}

.card-icon i {
    font-size: 32px;
    color: var(--color-white);
}

.mission-card h2,
.vision-card h2 {
    color: var(--color-emerald);
    margin-bottom: var(--space-3);
    font-size: 1.8rem;
}

.mission-card p,
.vision-card p {
    color: var(--color-text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Values Section */
.values-section {
    background: #f3f4f6;
    padding: var(--space-12) 0;
}

.section-title {
    text-align: center;
    color: var(--color-emerald);
    font-size: 2.5rem;
    margin-bottom: var(--space-8);
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--color-white);
    padding: var(--space-6);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-emerald) 0%, #0d3a23 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-3);
}

.value-icon i {
    font-size: 28px;
    color: var(--color-white);
}

.value-card h3 {
    color: var(--color-dark);
    margin-bottom: var(--space-2);
    font-size: 1.3rem;
}

.value-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background: var(--color-white);
    padding: var(--space-12) 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-6);
}

.team-member-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.member-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-emerald) 0%, #0d3a23 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-photo.placeholder {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

.member-photo.placeholder i {
    font-size: 80px;
    color: #9ca3af;
}

.member-info {
    padding: var(--space-6);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.member-name {
    color: var(--color-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: var(--space-1);
}

.member-role {
    color: var(--color-emerald);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.member-expertise {
    color: #6b7280;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: var(--space-3);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid #e5e7eb;
}

.member-bio {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    flex: 1;
    margin-bottom: var(--space-3);
}

.member-social {
    display: flex;
    gap: var(--space-2);
    margin-top: auto;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-emerald);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-emerald);
    color: var(--color-white);
    transform: scale(1.1);
}

.social-link i {
    font-size: 18px;
}

/* Committees Section */
.committees-section {
    background: #f9fafb;
    padding: var(--space-12) 0;
}

.committee-block {
    margin-bottom: var(--space-12);
}

.committee-block:last-child {
    margin-bottom: 0;
}

.committee-title {
    color: var(--color-dark);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-3);
    border-bottom: 3px solid var(--color-emerald);
    display: inline-block;
}

/* Join CTA Section */
.join-cta {
    background: linear-gradient(135deg, var(--color-emerald) 0%, #0d3a23 100%);
    color: var(--color-white);
    padding: var(--space-16) 0;
    text-align: center;
}

.join-cta h2 {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
}

.join-cta p {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: var(--space-6);
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--color-white);
    color: var(--color-emerald);
    padding: var(--space-4) var(--space-8);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: var(--space-10) 0 var(--space-8);
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .section-title {
        font-size: 2rem;
    }

    .committee-title {
        font-size: 1.5rem;
    }

    .join-cta h2 {
        font-size: 2rem;
    }

    .join-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .member-photo {
        height: 250px;
    }

    .member-info {
        padding: var(--space-4);
    }
}
