/* Стили для страницы команды */
.team-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-color-dark) 0%, var(--bg-color) 100%);
    text-align: center;
}

.team-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-color-light);
}

.team-members {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--accent-color);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.member-role {
    font-size: 1rem;
    color: #e74c3c;
    margin-bottom: 15px;
    font-weight: 600;
}

.member-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color-light);
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.member-social a:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.join-team {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-color-dark) 100%);
    text-align: center;
}

.join-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-color-light);
}

.join-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.join-option {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.join-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.option-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.join-option h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.join-option p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color-light);
    margin-bottom: 25px;
    min-height: 80px;
}

/* Адаптивность */
@media screen and (max-width: 992px) {
    .team-title {
        font-size: 2.8rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .team-hero {
        padding: 100px 0 60px;
    }
    
    .team-title {
        font-size: 2.5rem;
    }
    
    .team-description {
        font-size: 1.1rem;
    }
    
    .join-options {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .join-option p {
        min-height: auto;
    }
}

@media screen and (max-width: 576px) {
    .team-title {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .member-avatar {
        width: 120px;
        height: 120px;
    }
} 