/* Team Page Styles */
.team-page {
    background: var(--background);
}

.team-main {
    padding-top: 80px;
}

/* Hero Section */
.team-hero {
    background: linear-gradient(to right, rgba(51, 214, 180, 0.1), rgba(51, 214, 180, 0.05));
    padding: 6rem 0;
    text-align: center;
}

.team-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.team-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Team Members Section */
.team-members {
    padding: 6rem 0;
    background: var(--card-bg);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.member-card {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2.5rem;
    transition: var(--transition);
}

.member-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.member-info h2 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.member-info h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.member-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.member-expertise span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(51, 214, 180, 0.1);
    border-radius: 2rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.member-expertise i {
    font-size: 1rem;
}

/* Vision Section */
.team-vision {
    padding: 6rem 0;
}

.vision-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.vision-content h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.vision-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.vision-stats .stat {
    text-align: center;
}

.vision-stats .stat i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.vision-stats .stat h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.vision-stats .stat p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-hero {
        padding: 4rem 0;
    }

    .team-hero h1 {
        font-size: 2.5rem;
    }

    .team-members,
    .team-vision {
        padding: 4rem 0;
    }

    .member-card {
        padding: 2rem;
    }

    .member-info h2 {
        font-size: 1.5rem;
    }

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

    .vision-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

    .team-hero p {
        font-size: 1rem;
    }

    .members-grid {
        grid-template-columns: 1fr;
    }

    .member-expertise {
        flex-direction: column;
    }

    .member-expertise span {
        width: 100%;
        justify-content: center;
    }
} 