/* =======================================================
   GLOBAL RESET
   ======================================================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0 !important;
  font-family: "Inter","Pretendard",system-ui,-apple-system,
               "Segoe UI",Roboto,"Noto Sans KR",sans-serif;
  background: #fff;
  color: #444;
}


/* =======================================================
   FULLSCREEN HERO
   ======================================================= */
.hero {
  width: 100vw;
  height: 90vh;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  top: 0 !important;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 !important;
}



/* =======================================================
   HEADER (전시 페이지 전용)
   ======================================================= */
body[data-page="log"] header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding-top: 10px !important;
  z-index: 3000;
}

body[data-page="log"] header .logo-brand,
body[data-page="log"] header .logo-roman,
body[data-page="log"] header .logo-korean {
  color: rgba(255, 255, 255, 0.9) !important;
}

body[data-page="log"] header .search-icon,
body[data-page="log"] header .shop-toggle {
  display: none !important;
}

/* 메뉴 텍스트 */
.main-nav a{
  color:rgba(255, 255, 255, 0.9);
}

/* | 구분선 */
.main-nav a::before{
  background:rgba(255, 255, 255, 0.9);
}

/* =======================================================
   LIST ICON
   ======================================================= */
.list-toggle {
  position: fixed;
  top: 9px;
  right: 22px;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 3500;
  opacity: 0.8;
  color: rgba(255, 255, 255, 0.9);
}

.ic-list {
  width: 24px;
  height: 24px;
}

.list-toggle:hover {
  opacity: 1;
}



/* =======================================================
   DESCRIPTION
   ======================================================= */
.description {
  text-align: center;
  max-width: 760px;
  margin: 150px auto 110px;
  padding: 0 24px;
  line-height: 1.4;
}

.brand {
  font-size: 21px;
  font-weight: 300;
  margin-bottom: 70px;
}

.subtitle {
  font-size: 13px;
  font-weight: 200;
  opacity: 1;
  margin-bottom: 70px;
}



/* =======================================================
   POSTER
   ======================================================= */
.poster {
  margin: 50px 0 55px;
}

.poster img {
  width: 70%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}



/* =======================================================
   EXHIBITION INFO
   ======================================================= */
.exhibition-info {
  margin: 60px 0 100px;
  font-size: 10px;
  color: #333;
  line-height: 1.45;
}

.exhibition-info p {
  margin: 5px 0;
}

.exhibition-info strong {
  font-weight: 500;
}



/* =======================================================
   BODY TEXT
   ======================================================= */
.text,
.text.kor {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

.text {
  font-size: 12px;
  opacity: 0.9;
}

.text.kor {
  font-family: "Pretendard","Noto Sans KR",sans-serif;
  font-size: 11px;
  opacity: 0.85;
  margin-top: 55px;
}



/* =======================================================
   ABOVE SLIDER LINK
   ======================================================= */
.above-slider-link {
  text-align: center;
  margin: 100px auto 50px;
  display: flex;
  flex-direction: column;
  gap: 4px;   /* 두 링크 간 간격 */
}

.above-slider-link a {
  display: inline-flex;
  justify-content: center;  /* 가운데 정렬 보강 */
  align-items: center;
  gap: 6px;
  color: #444444;
  font-size: 10px;
  text-decoration: none;
  opacity: 0.7;
}

.above-slider-link a:hover {
  color: #f260c9;
  opacity: 1;
}

.ic-arrow,
.ic-insta {
  width: 11px;
  height: 11px;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}




/* =======================================================
   IMAGE SLIDER ✅ 최종 완성
   ======================================================= */
.slider-section {
  width: 100%;
  text-align: center;
  margin: 0 auto 100px;
}

/* ✅ 핵심: 슬라이드 가로 배열 + 한 장씩 화면 100% */
.slider {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  padding: 0;
  margin: 0;
}

/* ✅ 슬라이드 자체가 화면 1장을 꽉 채움 */
.slide {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ✅ 이미지는 비율 유지 + 가운데 */
.slide img {
  width: auto;
  height: auto;
  max-width: 950px;
  max-height: 50vh;
  display: block;
  margin: 0 auto;
}



/* =======================================================
   SLIDER CONTROLS
   ======================================================= */
.slider-controls {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}

.arrow-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.6;
  padding: 6px 10px;
  color: #000 !important;
}

.arrow-btn:hover {
  opacity: 1;
}

#sliderIndicator {
  font-size: 12px;
  opacity: 0.75;
}



/* =======================================================
   MOBILE RESPONSIVE
   ======================================================= */
@media (max-width: 768px) {

  .hero {
    height: 75vh;
  }

  .hero img {
    object-position: center top;
  }

  body[data-page="log"] header .logo-brand {
    color: #fff !important;
  }

  .list-toggle {
    width: 26px;
    height: 26px;
    right: 12px;
  }

  .ic-list {
    width: 24px;
    height: 24px;
  }


  /* ✅ 모바일에서도 옆 슬라이드 절대 안 보임 */
  .slider {
    overflow: hidden;
  }

  .slide {
    margin: 0 !important;
    padding: 0 !important;
  }

  .slide img {
    max-width: 100%;
    max-height: 40vh;
  }
}
