@import url("fonts.css");

body {
  font-family: "Noto Sans KR", sans-serif;
  scroll-behavior: smooth;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.editorial-text {
  line-height: 1.6;
  letter-spacing: -0.02em;
}

/* 로고 미준비: 텍스트 브랜드만 사용 */
.site-brand {
  font-family: "Gowun Batang", serif;
}

.nav-link {
  font-family: "Gowun Batang", serif;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#profile-modal,
#privacy-modal {
  display: none;
  align-items: center;
  justify-content: center;
}

#profile-modal.is-open,
#privacy-modal.is-open {
  display: flex;
}

@keyframes scroll-indicator-float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
    opacity: 1;
  }
}

@keyframes scroll-indicator-wheel {
  0% {
    transform: translateY(0);
    opacity: 0.9;
  }
  70% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 12px;
  animation: scroll-indicator-float 2.2s ease-in-out infinite;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-indicator__mouse {
  width: 34px;
  height: 52px;
  border: 1.5px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  margin: 0 auto;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.06);
}

.scroll-indicator__wheel {
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  animation: scroll-indicator-wheel 1.6s ease-in-out infinite;
}

.scroll-indicator__label {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transform: translateX(0.175em);
}
