/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    scroll-snap-align: start;
}

.hero-content {
    max-width: 1000px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-title-line {
    display: block;
    color: #333;
    font-weight: 300;
}

.hero-title-highlight {
    display: block;
    color: #247dff;
    font-weight: bold;
    position: relative;
}

/* Removed shimmer animation */

.hero-subtitle {
    font-size: 1.5rem;
    color: #247dff;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero 섹션 스크롤 표시 */
.hero-scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #247dff;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator:hover {
    color: #1d5cd8;
}

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

/* Hero Section Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 25px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-scroll-indicator {
        bottom: 40px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-scroll-indicator {
        bottom: 30px;
        font-size: 0.75rem;
    }
}