/* About Page Specific Styles */

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    color: var(--clean-white);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::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 100 100"><defs><pattern id="about-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(255,255,255,0.1)"/><polygon points="6,6 19,6 12.5,19" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Active Navigation Item */
.nav-menu li a.active {
    color: var(--accent-orange);
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background: var(--clean-white);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.8rem;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    font-weight: bold;
}

.story-text p {
    font-size: 1.2rem;
    color: var(--dark-charcoal);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-highlight {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.story-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-cyan);
}

.highlight-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.story-highlight h3 {
    font-size: 1.4rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.story-highlight p {
    color: var(--dark-charcoal);
    font-size: 1rem;
    margin: 0;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.mission-section h2 {
    font-size: 2.8rem;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: bold;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.mission-card {
    background: var(--clean-white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--medium-gray);
    position: relative;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mission-card:hover::before {
    opacity: 1;
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.mission-card h3 {
    font-size: 1.6rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-weight: bold;
}

.mission-card p {
    color: var(--dark-charcoal);
    line-height: 1.6;
    font-size: 1rem;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--clean-white);
}

.team-section h2 {
    font-size: 2.8rem;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: bold;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.team-member {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--medium-gray);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-cyan);
}

.member-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.3);
}

.avatar-icon {
    font-size: 3rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.team-member h3 {
    font-size: 1.6rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.member-role {
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-bio {
    color: var(--dark-charcoal);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.specialty {
    background: var(--clean-white);
    color: var(--secondary-navy);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--medium-gray);
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.values-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.values-text h2 {
    font-size: 2.8rem;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    font-weight: bold;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.4rem;
    color: var(--secondary-navy);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.value-item p {
    color: var(--dark-charcoal);
    line-height: 1.6;
    font-size: 1rem;
}

.values-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--clean-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--accent-cyan);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.stat-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-charcoal);
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

/* Community Section */
.community-section {
    padding: 5rem 0;
    background: var(--clean-white);
}

.community-section h2 {
    font-size: 2.8rem;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: bold;
}

.community-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.community-text p {
    font-size: 1.2rem;
    color: var(--dark-charcoal);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.community-text h3 {
    font-size: 1.6rem;
    color: var(--primary-navy);
    margin: 2rem 0 1rem;
    font-weight: bold;
}

.community-events {
    list-style: none;
    margin-bottom: 2rem;
}

.community-events li {
    padding: 0.8rem 0;
    color: var(--dark-charcoal);
    font-size: 1.1rem;
    border-bottom: 1px solid var(--medium-gray);
}

.community-events li:last-child {
    border-bottom: none;
}

.community-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.community-highlight {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.community-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-cyan);
}

.community-highlight .highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.community-highlight h4 {
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.community-highlight p {
    color: var(--dark-charcoal);
    font-size: 0.9rem;
    margin: 0;
}

/* About CTA */
.about-cta {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: var(--clean-white);
    text-align: center;
}

.about-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.contact-info {
    margin-top: 2rem;
    opacity: 0.8;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .story-content,
    .values-content,
    .community-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .stat-circle {
        width: 120px;
        height: 120px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 5rem 0 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .story-text h2,
    .mission-section h2,
    .team-section h2,
    .values-text h2,
    .community-section h2,
    .about-cta h2 {
        font-size: 2rem;
    }

    .mission-card,
    .team-member,
    .story-highlight {
        padding: 1.5rem;
    }

    .mission-icon,
    .highlight-icon {
        font-size: 3rem;
    }

    .member-avatar {
        width: 80px;
        height: 80px;
    }

    .avatar-icon {
        font-size: 2.5rem;
    }

    .values-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-circle {
        width: 100px;
        height: 100px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
.mission-card {
    animation: fadeInUp 0.6s ease-out;
}

.mission-card:nth-child(2) {
    animation-delay: 0.1s;
}

.mission-card:nth-child(3) {
    animation-delay: 0.2s;
}

.mission-card:nth-child(4) {
    animation-delay: 0.3s;
}

.team-member {
    animation: slideInUp 0.8s ease-out;
}

.team-member:nth-child(2) {
    animation-delay: 0.2s;
}

.team-member:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for story highlights */
.story-highlight:nth-child(1):hover {
    border-left: 4px solid var(--accent-orange);
}

.story-highlight:nth-child(2):hover {
    border-left: 4px solid var(--accent-cyan);
}

.story-highlight:nth-child(3):hover {
    border-left: 4px solid var(--success-green);
} 