/* moon-hero.css - Moon Experience (DeepSeek Final) */
.moon-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: transparent;
}

#cosmos {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.moon-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.moon-brand-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.9;
    animation: moonPulse 3s ease-in-out infinite;
}

@keyframes moonPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.moon-hero-title {
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 700;
    color: #F7F1DD;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}
.moon-hero-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.moon-hero-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 14px;
    color: rgba(247, 241, 221, 0.45);
    letter-spacing: 0.06em;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    transition-delay: 0.15s;
}
.moon-hero-tags.visible {
    opacity: 1;
    transform: translateY(0);
}

.moon-hero-tags .dot {
    color: rgba(247, 241, 221, 0.15);
}

.moon-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    transition-delay: 0.3s;
}
.moon-hero-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary {
    background: rgba(212, 176, 82, 0.15);
    border: 1px solid rgba(212, 176, 82, 0.3);
    color: #D4B052;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    letter-spacing: 0.04em;
    backdrop-filter: blur(8px);
    pointer-events: auto;
}
.btn-primary:hover {
    background: rgba(212, 176, 82, 0.25);
    border-color: rgba(212, 176, 82, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 176, 82, 0.15);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(247, 241, 221, 0.12);
    color: rgba(247, 241, 221, 0.7);
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    letter-spacing: 0.04em;
    pointer-events: auto;
}
.btn-secondary:hover {
    border-color: rgba(247, 241, 221, 0.3);
    color: #F7F1DD;
    transform: translateY(-2px);
}

.moon-orbit-menu {
    margin-top: 20px;
    min-height: 160px;
    position: relative;
    z-index: 5;
}

.moon-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(247, 241, 221, 0.2);
    font-size: 13px;
    letter-spacing: 0.06em;
    animation: scrollHintFade 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes scrollHintFade {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.4; }
}

@media (max-width: 768px) {
    .moon-hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }
    .moon-hero-title {
        font-size: 36px;
    }
    .moon-brand-icon {
        font-size: 36px;
    }
}

