/* 전역 스타일 */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
}

/* 섹션 전환 애니메이션 */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 호버 효과 */
.bg-white {
    transition: transform 0.3s ease;
}

.bg-white:hover {
    transform: translateY(-5px);
}

/* 반응형 조정 */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .text-xl {
        font-size: 1.1rem;
    }
}