@charset "UTF-8";
/**
 * Hero 섹션 스타일
 */

.hero {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-soft), transparent),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-bottom: 1px solid var(--border);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23888' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero.with-bg {
    background-size: cover;
    background-position: center;
}

.hero.with-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.hero h1 {
    font-size: var(--title-page);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.hero.with-bg h1 {
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: var(--font-md);
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero.with-bg p {
    color: rgba(255, 255, 255, 0.85);
}

/* 버튼 컨테이너 */
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero .btn {
    min-width: 200px;
    padding: 10px 32px;
    background: var(--accent);
    color: #fff;
    font-size: var(--font-md);
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: transform var(--transition), box-shadow var(--transition);
}

.hero .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

/* 반응형 */
@media (max-width: 768px) {
    .hero {
        padding: 64px 16px;
    }
}