/* 공통 기본 스타일 */

/* 텍스트 선택 및 드래그 방지 */
body, html {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}
body {
    position: relative;
   /* background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);*/
    background-size: 50px 50px;
    background-repeat: repeat;
    background-position: 0 0;
}
/* 입력 필드와 링크는 예외 */
input, textarea, a, button {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* 커서 스타일 */
body {
    cursor: default;
}

/* SUIT 폰트 */
@font-face {
    font-family: 'SUIT';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'SUIT';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'SUIT';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'SUIT';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SUIT';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'SUIT';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'SUIT';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'SUIT';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'SUIT';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Heavy.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}

/* 기본 리셋 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body 기본 스타일 */
body {
    font-family: 'SUIT', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #191919;
    background-color: linear-gradient(180deg, #ffc14d 0%, #ffef43 100%);
    overflow-x: clip; /* 가로 스크롤 방지 - sticky 호환 */
}

html {
    scroll-behavior: smooth;
    overflow-x: clip; /* 가로 스크롤 방지 - sticky 호환 */
}

/* 링크 기본 스타일 - 헤더 네비게이션과 문장 텍스트 제외 */
a:not(.nav-link):not(.sentence-text):link,
a:not(.nav-link):not(.sentence-text):visited,
a:not(.nav-link):not(.sentence-text):hover,
a:not(.nav-link):not(.sentence-text):active,
a:not(.nav-link):not(.sentence-text):focus {
    text-decoration: none;
}


/* 문단 스타일 */
p {
    margin: 0;
    padding: 0;
}

/* 제목 스타일 */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

/* 리스트 스타일 */
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 이미지 스타일 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 버튼 기본 스타일 */
button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* 입력 요소 기본 스타일 */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

/* 테이블 기본 스타일 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}


button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* 입력 요소 기본 스타일 */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

/* 테이블 기본 스타일 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
