/* ============================================================
 * 1. 폰트 등록 (로고 및 타이틀)
 * ============================================================ */
@font-face {
    font-family: 'norion-logo-font';
    src: url('../fonts/Sniglet/Sniglet-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'title-font';
    src: url('../fonts/Pangolin/Pangolin-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ============================================================
 * 2. 기본 초기화 및 배경색
 * ============================================================ */
body {
    margin: 0;
    padding: 0;
    font-family: 'Malgun Gothic', dotum, sans-serif;
    color: #333;
    line-height: 1.8;
    background-color: #f9f9f9; /* 전 페이지 공통 배경색 */
}

/* ============================================================
 * 3. 공통 레이아웃 (head.html에서 이동됨)
 * ============================================================ */
section {
    width: 100%;
    background-color: #f9f9f9;
    box-sizing: border-box;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
 * 4. 유틸리티 클래스 (head.html에서 이동됨)
 * ============================================================ */
.bg-white { background-color: #ffffff !important; }
.bg-gray { background-color: #f0f0f0 !important; }
.no-border { border: none !important; }

.section-title {
    font-size: 36px;
    font-family: 'title-font', cursive;
    color: #111;
    margin-bottom: 20px;
    text-align: center;
}

.section-desc {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    word-break: keep-all;
}
