/* Стили для страницы команды */

.team-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 60px 60px;
    position: relative;
}

.team-hero-content {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease;
}

.team-hero h1 {
    font-size: 120px;
    font-weight: 900;
    letter-spacing: -5px;
    margin-bottom: 20px;
}

.team-hero p {
    font-size: 20px;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.team-photo {
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.3);
}

/* Профили */
.team-profiles {
    background: #000;
}

.profile-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-content {
    max-width: 1400px;
    width: 100%;
    display: flex;
    gap: 80px;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.profile-section.visible .profile-content {
    opacity: 1;
    transform: translateY(0);
}

/* Альтернативная раскладка (картинка слева) */
.profile-section.alt .profile-content {
    flex-direction: row-reverse;
}

.profile-info {
    flex: 1;
}

.profile-number {
    font-size: 14px;
    color: #666;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.profile-name {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 15px;
    line-height: 1;
}

.profile-role {
    font-size: 16px;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-bio {
    margin-bottom: 50px;
}

.profile-bio p {
    font-size: 18px;
    line-height: 1.8;
    color: #999;
    margin-bottom: 25px;
}

.profile-socials {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.social-link:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.profile-image {
    flex: 0 0 500px;
}

.profile-image-placeholder {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #333 0%, #111 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.profile-section:hover .profile-image-placeholder {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Адаптив */
@media (max-width: 1200px) {
    .team-hero h1 {
        font-size: 80px;
    }
    
    .profile-name {
        font-size: 48px;
    }
    
    .profile-image {
        flex: 0 0 400px;
    }
    
    .profile-image-placeholder {
        width: 400px;
        height: 400px;
        font-size: 100px;
    }
}

@media (max-width: 768px) {
    .team-hero {
        padding: 100px 30px 40px;
    }
    
    .team-hero h1 {
        font-size: 50px;
        letter-spacing: -2px;
    }
    
    .team-hero p {
        font-size: 14px;
    }
    
    .team-hero-content {
        margin-bottom: 40px;
    }
    
    .team-photo-placeholder {
        font-size: 24px;
    }
    
    .profile-section {
        padding: 80px 30px;
    }
    
    .profile-content {
        flex-direction: column !important;
        gap: 40px;
    }
    
    .profile-name {
        font-size: 36px;
    }
    
    .profile-bio p {
        font-size: 16px;
    }
    
    .profile-image {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .profile-image-placeholder {
        width: 100%;
        height: 300px;
        font-size: 80px;
    }
    
    .profile-socials {
        flex-direction: column;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
    }
}
.profile-image-photo {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.profile-section:hover .profile-image-photo {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1200px) {
    .profile-image-photo {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .profile-image-photo {
        width: 100%;
        height: 300px;
    }
}
.team-photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}