/* ==============================
ADVANCED RESET.CSS + TYPOGRAPHY
============================== */

/* 0. Import Google Fonts (영문 + 한글) */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Noto+Sans+KR:wght@400;500;700&display=swap");

:root{
  /* --zone01-main--color: #EC8144; */
  --point-color: #e77a55;
}
/* 1. 박스 모델 초기화 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: inherit;
  font: inherit;
}

/* 2. HTML 기본 설정 */
html {
  font-family: "Hakgyoansim", "Noto Sans KR", sans-serif;
  font-size: 16px; /* 기본 기준 */
  font-weight: 500;
  /* line-height: 1.5; */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  color: #222;
}

/* 3. body 기본 설정 */
body {
  min-height: 100dvh;
  font-weight: 400;
  word-break: break-word;
  -webkit-overflow-scrolling: touch;
}



/* 5. 링크 & 리스트 */
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

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



/* 6. 이미지 / 미디어 초기화 */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
img{
  width: 100%;
}
/* 7. 폼 요소 초기화 */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  resize: none;
}

button {
  cursor: pointer;
  background-color: transparent;
}

/* 8. 테이블 초기화 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 9. 구분선 & 블록 인용 */
hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 1em 0;
}



/* 10. 접근성 */
/* :focus {
  outline: 3px solid #007acc;
  outline-offset: 2px;
} */

[hidden] {
  display: none !important;
}

/* 11. HTML5 요소 display 초기화 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}


