/* ===========================================
   Reset & Base Styles
   기본 스타일 초기화 및 기본 요소 설정
   =========================================== */

/* Google Fonts 로드 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

/* 기본 스타일 초기화 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 한국어 폰트 설정 (기본) */
body {
    font-family: "Noto Sans KR", sans-serif;
    color: var(--theme-text);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    margin-top: 0;
    padding-top: 0;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* 영어 폰트 설정 */
html[lang="en"] body,
html[lang="en"] * {
    font-family: "Noto Sans", sans-serif !important;
}

/* 일본어 폰트 설정 */
html[lang="ja"] body,
html[lang="ja"] * {
    font-family: "Noto Sans JP", sans-serif !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

img {
    max-width: 100%;
    height: auto;
}
