/*
Theme Name:   GeneratePress Child
Theme URI:    https://generatepress.com
Description:  GeneratePress 기반의 나만의 커스텀 자식 테마
Author:       Your Name
Template:     generatepress
Version:      1.0.0
*/

/* ==========================================================================
   여기 아래부터 나만의 커스텀 CSS(스타일)를 자유롭게 작성하시면 됩니다.
   ========================================================================== */
   /* 폰트 웹에서 불러오기 */
@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700&family=Noto+Sans+KR:wght@300;400;500&display=swap');

/* 1. 사이트 기본 한글 폰트 지정 */
body {
    font-family: 'Noto Sans KR', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* 2. 감성적인 제목 및 슬로건 영역에 명조체(바탕체) 적용 */
.hero-title, 
.section-title, 
.outro-content p {
    font-family: 'Nanum Myeongjo', 'Batang', serif !important;
    font-weight: 400;
    letter-spacing: -0.5px;
}

/* 3. 영문 서브타이틀은 조금 더 클래식하고 시원하게 세팅 */
.hero-sub {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 16px;
    letter-spacing: 5px;
}