/* GDC 테마 기본 스타일 */

/* 스크롤 부드럽게 */
html {
    scroll-behavior: smooth;
}

/* 기본 스타일 오버라이드 */
body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1F2937;
    line-height: 1.6;
}

/* 숨겨진 iframe 스타일 */
.hidden-iframe {
    display: none !important;
}

/* 링크 스타일 */
a {
    text-decoration: none;
    transition: color 0.2s ease;
}

/* 버튼 호버 효과 */
button, .btn {
    transition: all 0.2s ease;
}

/* 섹션 간격 */
section {
    scroll-margin-top: 80px;
}

