/* ========================================
   个人简介区域样式 - Hero Section Styles
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #050508 0%, #0a0a0f 50%, #1a1a2e 100%);
    color: white;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(76, 29, 149, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: center;
}

/* 左侧内容 */
.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
}

.hero-content .title {
    font-size: 1.3rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* 简介信息列表 */
.hero-intro {
    margin-bottom: 2rem;
}

.intro-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 1rem;
    margin-bottom: 0.75rem;
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
}

.intro-item strong {
    color: #c4b5fd;
    font-weight: 600;
    min-width: 80px;
    text-shadow: 0 0 5px rgba(139, 92, 246, 0.4);
}

.intro-item span:not(.intro-tags) {
    flex: 1;
}

.intro-tags {
    font-size: 0.85rem;
    color: #94a3b8;
    font-style: italic;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-social {
    display: flex;
    gap: 1rem;
}

.hero-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.hero-social a:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.hero-social i {
    font-size: 1.2rem;
}

/* 右侧个人卡片 */
.hero-image {
    text-align: center;
}

.profile-card {
    background: rgba(22, 22, 26, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.15), inset 0 0 30px rgba(139, 92, 246, 0.05);
}

.profile-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 50%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 4px solid rgba(139, 92, 246, 0.3);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4), inset 0 0 20px rgba(139, 92, 246, 0.2);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.profile-info p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.profile-info .edu-item {
    font-size: 0.85rem;
    color: #64748b;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c4b5fd;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.stat-item .label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 响应式 */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .intro-item {
        justify-content: center;
        text-align: left;
    }

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

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

    .hero-image {
        order: -1;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.85rem;
    }

    .intro-item {
        flex-direction: column;
        gap: 0.25rem;
    }

    .intro-item strong {
        min-width: auto;
    }
}
