@font-face {
  font-family: 'Pretendard';
  src: url('fonts/Pretendard-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
}

/* 메인 비주얼 영역 */
.main-visual {
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1.5s ease-in-out; /* 부드러운 전환 */
}


/* 하단 인디케이터 */
.indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.indicator div {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  transition: background-color 0.3s;
}

.indicator .active {
  background-color: white;
}
