body{
  background-color: black;
  margin: 0;
}
/* 1) 탑바가 비치지 않게, 풀폭 검정 고정 */
nav-bar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: black;
  z-index: 2000;
}

/* 2) 탑바 안쪽 요소들이 위로 붙는 것 방지: 높이 고정 + 세로 가운데 */
nav-bar nav,
nav-bar header,
nav-bar .nav,
nav-bar .nav-bar,
nav-bar .container{
  height: 72px;
  display: flex;
  align-items: center;
  background: black;
}

/* 3) ul 기본 마진 때문에 위로 뜨는 것 방지 */
nav-bar ul{
  margin: 0;
  padding: 0;
}

/* 4) 본문이 고정 탑바 밑으로 들어가 겹치는 것 방지 */
.dashboard{
  margin-top: 72px;
}

/* 전체 레이아웃 컨테이너 */
.frame{
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "helvetica-lt-pro", sans-serif;
}

.top-white{
  display: none;
}

/* 메인 콘텐츠 래퍼 */
.dashboard{
  margin-top: 120px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* 우측 고정 카드 */
.fixed-text{
  position: fixed;
  top: 20%;
  right: 5%;
  width: 185px;
  font-size: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
  border-radius: 5px;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  line-height: 20px;
}

/* 타이틀 이미지 중앙 */
.zone1{
  display: flex;
  justify-content: center;
  align-items: center;
}

.zone1 img{
  width: 100%;
  max-width: 70%;
  height: auto;
  display: block;
}

/* 고정 카드 내부 */
.zone2{
  margin-top: 3%;
  display: flex;
  flex-direction: column;
}

.zone2-1{
  font-size: 12px;
  font-weight: 700;
}

.zone2-2{
  display: flex;
  flex-direction: column;
}

.zone2-2-1{
  width: 100%;
}

.zone2-2-1 img{
  max-width: 100%;
  height: auto;
  display: block;
}

.zone2-2-2{
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.zone2-2-2-1,
.zone2-2-2-2{
  flex: 1 1 auto;
}

/* 섹션 전체 블록 */
.zone3{
  min-height: 100vh;
  padding: 80px 0;
}

/* 클릭 이미지 */
.click_image{
  width: 328px !important;
  object-fit: cover;
  cursor: pointer;
}

/* 내부 네비 */
.in-nav-bar{
  width: 100%;
  background: black;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.in-nav-bar ul{
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.in-nav-bar li a{
  text-decoration: none;
  color: white;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 1.2vw, 18px);
  white-space: nowrap;
}

.in-nav-bar li a:hover{
  text-decoration: underline;
  color: #ddd;
}

/* 섹션 앵커 스크롤 위치 */
.zone{
  scroll-margin-top: 120px;
  color: white;
}

/* 트레일러 */
.trailer-video{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.trailer-video iframe{
  width: 100%;
  height: 100%;
  border: none;
}

/* 크레딧: 고정 너비 유지, 화면 좁아지면 가려짐 */
#credit{
  scroll-margin-top: 72px;
  overflow: hidden;
  width: 100%;
  padding: 100px 0;
}

#credit img{
  width: 1100px;
  max-width: none;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 버튼 */
button{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 30px;
  padding: 0;
  margin: 10px 0 10px 0;
  font-size: 12px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: gray;
  background-color: rgba(245, 235, 224, 0.5);
  border-radius: 5px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

button:hover{
  color: white;
  background-color: rgba(214, 204, 194, 0.7);
  border: none;
}

/* Swiper */
.swiper{
  margin-top: 5%;
  width: 100%;
  height: auto;
  z-index: 1;
}

.swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev{
  width: 44px;
  height: 44px;
}

.swiper-button-next::after,
.swiper-button-prev::after{
  color: rgba(255,255,255,0.6);
  font-size: 24px;
}

.swiper-scrollbar{
  display: none !important;
}

.swiper-pagination-bullet{
  background: rgba(255,255,255,0.9) !important;
}

.swiper-pagination-bullet-active{
  background: rgba(255,255,255,0.6) !important;
}

/* footer */
footer-bar::part(title){
  color: white;
}

.director-title{
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

#director p{
  margin: 0 0 10px 0;
  line-height: 1.55;
}

nav-bar a {
  color: rgba(255, 255, 255, 0.15);
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

nav-bar a:hover {
  color: rgba(255, 255, 255, 1);
}


.section-header-img{
  display: flex;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 40px;
}

.section-header-img img{
  width: 350px;
  max-width: 100%;
  height: auto;
}


#director .director-inner {
  width: min(55%, 900px);
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

#director {
  margin-top: 80px;
  font-size: 15px;
}

html {
  scroll-behavior: smooth;
}
