/* ==================================================
   01-reset.css (Reset & Normalization Styles)
   ================================================= */

/* 1. Universal Reset - 모든 요소 기본값 초기화 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. 전역 부드러운 전환 효과 */
* {
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}

/* 3. HTML/Body 기본 설정 */
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.15;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #fafafa;
  color: #2d3748;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  /* 레이아웃 관련 설정은 layout.css로 이동 예정 */
}

/* 4. 미디어 요소 기본 설정 */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 5. 폼 요소 기본 설정 */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

/* 6. 목록 요소 스타일 제거 */
ul,
ol,
menu {
  list-style: none;
}

/* 7. 링크 기본 스타일 제거 */
a {
  text-decoration: none;
  color: inherit;
}

/* 8. 테이블 기본 설정 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 9. 포커스 상태 기본 설정 */
button:focus,
input:focus {
  outline: 2px solid #4299e1;
  outline-offset: 2px;
}

/* 10. 접근성 - 모션 감소 선호 시 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* 11. 스크롤바 기본 커스터마이징 */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* 12. 선택 영역 스타일 */
::selection {
  background: rgba(102, 126, 234, 0.2);
  color: #2d3748;
}

::-moz-selection {
  background: rgba(102, 126, 234, 0.2);
  color: #2d3748;
}
