/* =======================================================
   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
   ======================================================= */
/* 기본: PC, 태블릿 — 전체 화면 채우기 */
.hero {
  width: 100vw;
  height: 90vh;   /* 기본은 무조건 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 (Back to Log)
   ======================================================= */
.list-toggle {
  position: fixed;           /* hero 위에 고정 */
  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: 30px 0 55px;
  text-align: center;
}

.poster video,
.poster img {
  width: 70%;
  max-width: 310px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border-radius: 0; /* 필요하면 둥글기 조절 */
}

/* iPhone에서 비디오 높이가 튀지 않도록 */
.poster video {
  height: auto;
  object-fit: cover;
}


/* =======================================================
   EXHIBITION INFO
   ======================================================= */
.exhibition-info {
  margin: 70px 0 90px;
  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: 40px;
}

/* =======================================================
   ABOVE SLIDER LINK
   ======================================================= */
.above-slider-link {
  text-align: center;
  margin: -20px auto 90px;
  display: flex;
  flex-direction: column;
  gap: 6px;   /* 링크 간 간격 조금 더 여유 */
}

.above-slider-link a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: #444444;
  font-size: 11px;   /* 너무 작지 않게 살짝 키움 */
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease, color 0.2s ease;
}

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

/* 공통 아이콘 스타일 */
.ic-arrow,
.ic-insta,
.ic-external {
  width: 12px;
  height: 12px;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}


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

.slider {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.slide {
  width: 100%;
  display: inline-block;
}

.slide img {
  width: auto;           /* 비율 망가지는 것 방지 */
  max-width: 950px;      /* 가로 사진은 이 기준으로 */
  max-height: 50vh;      /* 세로 사진은 화면 80%까지만 */
  height: auto;
  margin: 0 auto;
  display: block;
}
.video-section {
  margin: 60px 0 130px;
  text-align: center;
}

.video-section video {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}


/* =======================================================
   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;
}

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

#sliderIndicator {
  font-size: 12px;
  opacity: 0.75;
}
.arrow-btn {
  -webkit-text-fill-color: currentColor !important;  /* iOS 파란색 방지 */
  color: #000000 !important;  /* 원하는 색 */
}
/* =======================================================
   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;
  }

   .slide img {
    width: 92%;
    height: 80%;
  }

}
