/* Import global styles */
@import url('global.css');

/* About Hero Section */
.about-hero {
    padding: 80px 0 60px 0;
    text-align: center;
    margin-bottom: 80px;
}

.about-hero-content h1 {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.about-hero-content .lead {
    font-size: 1.3rem;
    color: var(--text-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Mission Section */
.mission-section {
    padding: 60px 0;
    margin-bottom: 80px;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 25px;
    letter-spacing: -0.03em;
}

.mission-text p {
    font-size: 1.1rem;
    color: var(--text-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.mission-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-image .image-placeholder {
    width: 280px;
    height: 280px;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary-400) 0%, var(--primary-700) 100%);
}

/* Values Section */
.values-section {
    padding: 60px 0;
    margin-bottom: 80px;
    text-align: center;
}

.values-section h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 50px;
    letter-spacing: -0.03em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--background-50);
    border: 1px solid var(--background-200);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-800);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

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

/* Timeline Section */
.timeline-section {
    padding: 60px 0;
    margin-bottom: 80px;
}

.timeline-section h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -0.03em;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-300);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: -49px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-600);
    border: 4px solid var(--background-50);
    border-radius: 50%;
}

.timeline-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.timeline-content p {
    color: var(--text-600);
    font-size: 1rem;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 60px 0;
    margin-bottom: 80px;
}

.team-section h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -0.03em;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    text-align: center;
    background: var(--background-50);
    border: 1px solid var(--background-200);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.team-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--secondary-400) 0%, var(--accent-500) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-800);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.team-role {
    font-size: 0.9rem;
    color: var(--primary-600);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-card p:not(.team-role) {
    color: var(--text-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    margin-bottom: 40px;
}

.cta-content {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
    padding: 60px 40px;
    border-radius: 20px;
    color: var(--background-50);
}

.cta-content h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.03em;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-content .btn-primary {
    background-color: var(--background-50);
    color: var(--primary-700);
    font-size: 1rem;
    padding: 14px 32px;
}

.cta-content .btn-primary:hover {
    background-color: var(--background-100);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero-content .lead {
        font-size: 1.1rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .mission-text h2 {
        font-size: 2rem;
    }

    .mission-image .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }

    .values-section h2,
    .timeline-section h2,
    .team-section h2 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-marker {
        left: -39px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-content {
        padding: 40px 20px;
    }

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

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