
/* static/css/main.css */
/* 메인 컨테이너 스타일링 - 기존 flex 제거하고 섹션 레이아웃 지원 */
main {
    display: block;
    min-height: 100vh;
    padding-top: 80px; /* 헤더 높이만큼 여백 */
}

/* 기존 히어로 카드를 사용하고 싶을 경우를 대비한 스타일 유지 */
.hero-card {
    text-align: center;
    background: white;
    padding: 50px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    max-width: 550px;
    width: 100%;
    margin: 40px auto;
}

h1 { font-size: 2.2rem; margin-bottom: 15px; letter-spacing: -1px; }
p { color: var(--text-light); margin-bottom: 35px; }

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
