/* Team Hero Section */
.team-hero {
    height: calc(80vh);
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('./assets/team-image.jpg');
    /* 这是一张现代金融大厦的图片，体现专业金融属性 */
    
    /* 备选金融背景图片：
    1. https://images.unsplash.com/photo-1460472178825-e5240623afd5 (证券交易所)
    2. https://images.unsplash.com/photo-1554224155-8d04cb21cd6c (现代商务大楼)
    3. https://images.unsplash.com/photo-1486406146926-c627a92ad1ab (金融中心)
    4. https://images.unsplash.com/photo-1516937941344-00b4e0337589 (华尔街)
    */
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-text-container {
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    gap: 0rem;
    color: #fff;
    text-align: right;
    padding: 0rem 0;
}

.hero-main {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
}

.hero-main h1 {
    font-size: 4rem;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
}

.hero-divider {
    color: var(--primary);
    font-size: 1.8rem;
    line-height: 1;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.hero-description {
    max-width: 100vw;
    margin-left: auto;
    text-align: right;
}

.hero-text {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
    padding:1rem 0;
}

/* Team Members Section */
.team-section {
    margin: 4rem 0;
    background-color: #ffffff;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    background-color: #ffffff;
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    background-color: #ffffff;
}

@media (max-width: 480px) {
    .member-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

}


.member-card {
    padding: 0 2rem;
    background-color: #ffffff;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 300px;
    height: 300px;
    overflow: hidden;
    margin:1rem auto 0 auto
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.member-info .name-cn {
    color: #666;
    font-size: 0.9rem;
    margin: -0.3rem 0 0.8rem 0;
}

.member-info .position {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-info .quote {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.learn-more {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.learn-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.learn-more:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-text-container {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .hero-text-container {
        text-align: center;
    }

    .hero-main {
        justify-content: center;
    }

    .hero-description {
        margin: 0 auto;
    }

    .members-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .member-image {
        height: 400px;
    }

    .hero-text {
        font-size: 1.2rem;
    }

    .hero-main h1 {
        font-size: 3rem;
    }
    
    .hero-main p {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-main {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-divider {
        display: none;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .member-image {
        height: 200px;
        width:200px;
    }

    .member-info {
        padding: 1.5rem;
    }

    .hero-main p {
        font-size: 1.3rem;
    }
}

/* Team Culture Section */
.team-culture {
    position: relative;
    padding: 6rem 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000&q=80') center/cover fixed;
    color: #fff;
    margin-top: 4rem;
}

.culture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
}

.culture-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.culture-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.culture-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.culture-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.culture-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.culture-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.culture-item p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-culture {
        padding: 4rem 0;
    }

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

    .culture-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .team-culture {
        padding: 3rem 0;
    }

    .culture-content h2 {
        font-size: 1.8rem;
    }

    .culture-subtitle {
        font-size: 1.1rem;
    }
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
    position: relative;
}

.title-underline::before,
.title-underline::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary);
    opacity: 0.5;
}

.title-underline::before {
    left: -50px;
}

.title-underline::after {
    right: -50px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .title-underline {
        width: 60px;
    }
    
    .title-underline::before,
    .title-underline::after {
        width: 30px;
    }
} 