/* Main Page Styles */

/* ========== Hero Section ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-warm);
    z-index: -1;
}

/* 添加装饰性图案 */
.hero__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 182, 163, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 213, 181, 0.1) 0%, transparent 50%);
}

.hero__content {
    flex: 1;
}

.hero__illustration {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: var(--gradient-peach);
    border-radius: 50% 50% 40% 60%;
    position: relative;
    overflow: hidden;
}

.illustration-placeholder::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: var(--color-cream);
    border-radius: 50%;
    opacity: 0.6;
}

.illustration-placeholder::after {
    content: '';
    position: absolute;
    top: -5%;
    right: -5%;
    width: 40%;
    height: 40%;
    background: var(--color-sage);
    border-radius: 50%;
    opacity: 0.4;
}

/* Scroll Hint */
.hero__scroll-hint {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ========== About Section ========== */
.about {
    background: var(--color-bg-light);
}

.characters {
    display: flex;
    gap: var(--spacing-xl);
    justify-content: center;
    align-items: flex-end;
}

.character {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.character__avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-peach);
    border-radius: 50%;
    position: relative;
    box-shadow: var(--shadow-md);
}

.character--1 .character__avatar {
    background: var(--gradient-peach);
}

.character--2 .character__avatar {
    background: var(--gradient-sage);
}

/* 角色图标 */
.character--1 .character__avatar::before {
    content: '👦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--font-size-4xl);
}

.character--2 .character__avatar::before {
    content: '👩';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--font-size-4xl);
}

.character__bubble {
    background: var(--color-bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    max-width: 150px;
}

.character__bubble::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--color-bg-light);
}

.character__bubble p {
    font-size: var(--font-size-sm);
    color: var(--color-text-primary);
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    .characters {
        gap: var(--spacing-md);
    }

    .character__avatar {
        width: 80px;
        height: 80px;
    }

    .character__avatar::before {
        font-size: var(--font-size-2xl);
    }

    .character__bubble {
        max-width: 120px;
        padding: var(--spacing-sm);
    }
}

/* ========== Content Matrix Section ========== */
.content-matrix {
    background: var(--color-bg-warm);
}

.content-category {
    margin-bottom: var(--spacing-2xl);
}

.content-category:last-child {
    margin-bottom: 0;
}

/* Video Highlight */
.video-highlight__content {
    flex: 1;
}

.video-highlight__content p {
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.video-highlight__preview {
    flex: 1;
}

.video-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 16 / 9;
    background: var(--gradient-peach);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-placeholder::after {
    content: '🎬';
    font-size: var(--font-size-5xl);
    opacity: 0.3;
}

/* ========== Recruitment Section ========== */
.recruitment {
    position: relative;
    background: var(--color-wood);
    color: var(--color-bg-light);
}

.recruitment__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #D4A373 0%, #B88A5F 100%);
    opacity: 1;
}

.recruitment__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.recruitment__content {
    position: relative;
    z-index: 1;
}

.recruitment__text h3 {
    color: var(--color-bg-light);
}

.recruitment-list__item h4 {
    color: var(--color-bg-light);
}

.recruitment-list__item p {
    color: rgba(255, 255, 255, 0.9);
}

.recruitment__benefits h3 {
    color: var(--color-bg-light);
    margin-top: var(--spacing-xl);
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.benefit-item p {
    color: var(--color-bg-light);
}

/* ========== Contact Section ========== */
.contact {
    background: var(--color-bg-light);
}

/* ========== Footer ========== */
.footer {
    background: var(--color-text-primary);
    padding: var(--spacing-xl) 0;
}

.footer__copyright,
.footer__icp {
    color: rgba(255, 255, 255, 0.7);
}

.footer__icp a {
    color: rgba(255, 255, 255, 0.6);
}

.footer__icp a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* ========== Mobile Optimizations ========== */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: var(--spacing-2xl) 0;
    }

    .hero__scroll-hint {
        display: none;
    }

    .illustration-placeholder {
        max-width: 300px;
    }
}

/* ========== Accessibility ========== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
