
/* 이미지 뷰어 스타일 */
.image-viewer-container {
  width: 100%;
  height: calc(100vh - 85px); /* 헤더와 푸터 공간 확보 */
  position: fixed;
  top: 44px; /* 헤더 높이만큼 아래로 */
  left: 0;
  z-index: 40;
  /* border: 2px solid var(--main-black-color); */
  overflow: hidden;
  cursor: grab;
}

.image-viewer-container:active {
  cursor: grabbing;
}

.image-viewer {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

#zoomImage {
  max-width: none;
  max-height: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.zoom-controls {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 5px;
  z-index: 100;
}

.zoom-controls button {
  /* background: var(--main-black-color); */
  color: var(--main-black-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px !important;
  overflow: hidden;
  z-index: 100;
  font-family: 'En' , 'Pretendard' !important;
}

.zoom-controls button:hover {
  /* background: #333; */
  color: var(--main-pink-color);
}

.zoom-controls button:active {
  transform: scale(0.95);
}

header{
  background-color: transparent;
}

.land-img1{
  position: absolute;
  bottom: -1000px;
  left: 10px;
  /* width: 20%; */
  width: 300px;
  z-index: 100;
  pointer-events: none;
  /* height: 100%; */
}

.land-img2{
  position: absolute;
  bottom: -1000px;
  right: 10px;
  /* width: 20%; */
  width: 300px;
  z-index: 100;
  pointer-events: none;
  /* height: 100%; */
}

/* .menu-wrap{
  background-color: transparent;
}
.menu-wrap ul li{
  background-color: rgb(255, 255, 255,0.7);
  
} */

@media (max-width: 768px) {
  .land-img1{
    width: 50%;
  }
  .land-img2{
    width: 50%;
  }
  .zoom-controls {
    width: 100%;
    position: absolute;
    bottom: 40px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    z-index: 100;
  }

}