/* /css/loading.css */

#loading-wrap {
  flex-direction: column;
}

/* 배경 */
.bg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("/imgs/loadings/loading-5.webp");
  background-size: cover;
  background-position: center;
  transition: opacity 1.2s ease;
  z-index: 0;
}

#bg1 {
  opacity: 1;
}

#bg2 {
  opacity: 0;
}

.content-wrap > *:not(.bg-layer) {
  z-index: 10;
}

/* 타이틀 */
.title {
  position: absolute;
  width: 100%;
  height: fit-content;
  text-align: center;
  padding: 20px 0;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* 아치형 텍스트 */
.subtitle {
  display: inline-block;
  text-align: center;
  width: fit-content;
  height: fit-content;
  font-weight: normal;
  padding: 5px;
}

h1 {
  width: 80%;
  font-size: 8rem;
  color: var(--color-primary);
  font-family: "Youngwol", serif;
}

/* 멘트 */
#ment {
  position: absolute;
  bottom: 32%;
  margin-bottom: 20px;
  text-align: center;
  width: 80%;
  height: fit-content;
  font-weight: normal;
}

/* 로딩바 */
.loading-bar {
  position: absolute !important;
  left: 50%;
  bottom: 30%;
  width: 80%;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
  transform: translateX(-50%);
}

#loading-progress {
  height: 100%;
  width: 0;
  background: white;
  transition: width 0.2s linear;
}
