/* main.css - 공통 스타일 및 다른 파일들을 import */
/* 필요한 경우 @import를 사용할 수 있으나, 최신 프로젝트에서는 빌드 도구를 사용하여 합치는 것을 권장합니다. */

@import url('header.css');
@import url('sections.css');

/* 공통 초기화 스타일 등 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: auto;
  scroll-behavior: smooth;
}

body {
  font-family: 'Pretendard', sans-serif;
  background-color: #fff;
  color: #333;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
  padding-top: 65px;
}

a {
  text-decoration: none;
  color: #000;
}

/* 전체 섹션 공통 레이아웃 */
.section {
  height: calc(100vh - 65px);
  min-height: calc(100vh - 65px);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
  padding: 0 20px;
  box-sizing: border-box;
}

.section.first {
  height: 100vh; /* footer 공간 없이 꽉 채움 */
  min-height: 100vh;
}
