/* =========================
   Global
========================= */

/* =========================
   Global
========================= */
/* ==========================================================
   ✨ 드림투어 메인 웹 폰트 (로컬 서버 연결) ✨
========================================================== */
/* 1. 폰트 불러오기 (Pretendard & Noto Sans KR) */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

/* 2. 사이트 전체 글로벌 적용 */
html, body, button, input, select, textarea {
    font-family: "Pretendard Variable", Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif !important;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.02em; /* 💡 세련됨의 한 끗 차이인 자간 조절 */
    color: #334155; /* 💡 눈이 편안한 딥 그레이 블랙 */
}

/* 3. 제목 요소들을 더 묵직하고 세련되게 */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700 !important;

}
ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-content,
.content-area,
.content-container,
.kb-site-content,
.kadence-wrap,
.entry-content-wrap,
.site-main,
.content-wrap,
#inner-wrap,
#primary,
main[role="main"] {
	overflow: visible !important;
	transform: none !important;
}

/* ==========================================================
   ✨ 웹사이트 전체 폰트 색상 최적화 (눈이 편안한 세련된 블랙) ✨
========================================================== */

/* 1. 기본 본문 글씨 (완전 까만색이 아닌, 아주 짙고 부드러운 다크 그레이) */
body, p, span, a, li, div {
    color: #334155; /* 세련되고 눈이 편안한 슬레이트 그레이 */
}

/* 2. 제목 및 강조 글씨 (단단하고 무게감 있는 딥 블랙) */
h1, h2, h3, h4, h5, h6, strong, b, .home-section-title {
    color: #0f172a !important; /* 시선을 확 끄는 진한 블랙 */
}

/* 3. 예외 처리: 흰색 글씨가 필요한 곳(버튼, 배너, 뱃지 등)은 유지되도록 보호 */
.home-full-banner h3, 
.home-full-banner p, 
.tag-pill, 
.home-btn, 
.split-caption h3, 
.split-caption p,
.banner-action-btn,
.mobile-icon-btn svg,
.review-content p {
    color: inherit; 
}

