@charset "utf-8";
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
/* @font-face{
    font-family: Pretendard;
    src: url('https://cdn.jsdelivr.net/gh/Project-Pretendard/Pretendard/dist/web/static/woff2/Pretendard-Regular.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/gh/Project-Pretendard/Pretendard/dist/web/static/woff/Pretendard-Regular.woff') format('woff'),
         url('https://cdn.jsdelivr.net/gh/Project-Pretendard/Pretendard/dist/web/static/otf/Pretendard-Regular.otf') format('opentype');
} */
*{
    margin: 0;
    padding: 0;
}
ol, ul, li{
    list-style: none;
}
a{
    text-decoration: none;
}
img{
    width: 100%;
}
.tag-hover-ui-root{
    z-index: 20;
    position: absolute;
    min-width: 120px;
    padding: 0px 16px;
    min-height: 50px;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #377037;
    border-radius: 12px;
    transition: background-color 0.3s;
    color:white;
}

.tag-hover-ui-root > span{
    font-family: Pretendard;
}



body, html {
    margin: 0;
    padding: 0;
    font-family: 'Pretendard', sans-serif !important;
    height: 100%;
    overflow: hidden;
}

button {
	font-family:'Pretendard', sans-serif !important;
}

#mask{
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: rgba(0, 0, 0, 0);
    z-index: 111;
    display: none;
}
#mask.active{
    display: block;
}
.intro-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('../assets/images/hoyeonjae_intro_upscale.png') no-repeat center center;
    background-size: cover;
    filter: brightness(25%);
    transition: filter 0.2s ease;
    animation: backgroundScroll 120s linear infinite;
    z-index: 10;
}

@keyframes backgroundScroll {
    0%, 100% {
        background-position: right center;
    }
    50% {
        background-position: left center;
    }
}

.intro-text {
    position: absolute;
    top: 50px;
    left: 50px;
    color: white;
    transition: color 0.5s ease;
    z-index: 10;
}
.intro-text::before, .intro-text::after {
    content: '';
    position: absolute;
    background-color: white;
}
.intro-text::before {
    top: 200px;
    bottom: -650px;
    width: 2px;
}
.intro-text::after {
    left: 0;
    top: -20px;
    width: 100%;
    height: 2px;
}
.intro-text h1, .intro-text h2, .intro-text p {
    margin: 0;
    transition: color 0.5s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
.intro-text h1 {
    font-size: 3em;
}
.intro-text h2 {
    font-size: 4.5em;
}
.intro-text p {
    margin: 10px 0 0;
    font-size: 1.5em;
}

.center-text {
    position: absolute;
    top: calc(80%);
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: blink 1.5s infinite;
    cursor: pointer;
    z-index: 10;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@keyframes colorCycle {
    0% {
        color: #c1ffc1;
    }
    50% {
        color: white;
    }
    100% {
        color: #c1ffc1;
    }
}

.intro-text h1, .intro-text h2, .intro-text p {
    margin: 0;
    transition: color 0.5s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.intro-text.cycling h1, .intro-text.cycling h2, .intro-text p {
    animation: colorCycle 2s infinite;
}

.img-tour {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    background: url('../assets/images/img_tour_back.png') no-repeat center center;
    background-size: cover;
}
.img-tour-tag {
    position: absolute;
    top: 50%;
    left: 67.5%;
    width: 60px;
    cursor: pointer;
}

#img-tour-tag2 {
    position: absolute;
    top: 50%;
    left: 20%;
    width: 60px;
    cursor: pointer;
}

#hover-text2 {
    display: none;
    position: absolute;
    top: 20%;
    left: 20%;
    width: auto;
    cursor: pointer;
    background-color: #00b050;
    color: white;
    padding: 15px;
    border-radius: 70px;
    text-align: center;
    z-index: 10;
    font-size: 25px;
    font-weight:bold;
}
.img-tour-tag:hover + .hover-text {
    display: block;
}

.hover-text {
    display: none;
    position: absolute;
    top: 43%;
    right: 26%;
    width: auto;
    cursor: pointer;
    background-color: #00b050;
    color: white;
    padding: 15px;
    border-radius: 70px;
    text-align: center;
    z-index: 10;
    font-size: 25px;
    font-weight:bold;
}
.img-tour-guide {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
    justify-content: center;
    align-items: center;
}
.guide-img {
    max-width: 80%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.close-button {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 20px;
    cursor: pointer;
    top: 20px;
}
.guide-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    z-index: 3;
    background: #fff;
    padding: 20px 0px 70px;
    border-radius: 25px;
}
.guide-title {
    display: block;
    margin: 50px auto 50px;
    width: 65%;
}
.guide_contents {
    display: block;
    margin: auto;
    width: 85%;
}
/* 기본 모달 */
.modal{
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translateY(120%);
    z-index: 111;
    width: 100%;
    max-width: 530px;
    background: rgba(224, 241, 222, 40%);
    box-shadow: 0 0 10px rgb(255 255 255 / 50%);
    backdrop-filter: blur(10px) saturate(10px);
    -webkit-backdrop-filter: blur(10px) saturate(10px);
    border: 1px solid #fff;
    border-radius: 26px;
    overflow: hidden;
    padding: 8px;
    opacity: 0;
    transition: 0.5s all;
}
.modal.active{
	opacity: 1;
	transform: translateY(-50%);
}

#img-tour-tag2 {
	position: absolute;
    bottom: 0;
    left: 200px;
    width: 60px;
    cursor: pointer;
}

/*모달 CSS*/
.modal-content {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding: 16px;
}
#closeBar{
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 5px;
    border-radius: 10px;
		display: block;
    background: #c5d4c4;
		cursor: pointer;
}

.modal-header {

}

.modal-header .k-tit {
    color: #00761A;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    margin-top: 20px;
}

.modal-header .title .main-title {

}

.modal-header .title .sub-title {
    margin:3px 0 0;
    
}

#close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
#close-modal .bg,
#close-modal .arrow{
    transition: 0.5s all;
}

#close-modal:hover .bg{
    fill: #6D9C78;
}
#close-modal:hover .arrow{
    fill: #fff;
}

.modal-content-display{
    margin-top: 15px;
    overflow: hidden;
    border-radius: 13px;
		border: 1px solid #e0e0e0;
}
.modal-image {
	min-height: 250px;
    /* width: -webkit-fill-available; */
    /* padding: 10px 20px; */
}











.modal-footer {
    display: flex;
    justify-content: space-between; /* 이미지가 좌우로 배치되도록 설정 */
    align-items: center;
    padding: 20px;
    background-color: #fff;
}


.modal-footer .right-image {
    width: 25%;
    height: auto;
}

.modal-footer .left-image{
    height:auto;
    cursor:pointer;
}

.modal-footer2 {
    display: flex;
    justify-content: space-between; /* 이미지가 좌우로 배치되도록 설정 */
    align-items: center;
}

.left-images-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reset {
	cursor:pointer;
}

.left-image,
.reset {
    margin-right: 10px; /* 이미지들 사이에 여백 추가 */
}

.left-image:last-child,
.reset {
    margin-right: 0;
}

#left-image2{display:none;}
.modal_doll {
    width: 100%;
    border: none;
    min-height: 250px;
    overflow: hidden; /* 스크롤바 숨기기 */
}

.modal_doll::-webkit-scrollbar {
    display: none !important; /* 웹킷 브라우저에서 스크롤바 숨기기 */
}





/* .modal_name_lang{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
} */
.modal-body-art{
    height: 100%;
    max-height: 32px;
    overflow-y: auto;
    padding-top: 4px;
}
.modal-body-art::-webkit-scrollbar{
    width: 5px;
}
.modal-body-art::-webkit-scrollbar-track{
    background: #f1f1f1;
    border-radius: 10px;
}
.modal-body-art::-webkit-scrollbar-thumb{
    /* background: #00761a; */
    /* background: #78967e; */
    background: #93ad99;
    border-radius: 10px;
}
.modal-body-art p{
    font-weight: 400;
    font-size: 13px;
    color: #757E77;
    letter-spacing: -0.03em;
    word-break: keep-all;
}
#modal-art-kr{
    display: block;
}
#modal-art-en{
    display: none;
}






/* 한영 전환 버튼 */
.lan {
    display: flex;
    justify-content: flex-end;
}
.lang-button-bar {
	cursor: pointer;
    padding: 5px 0px;
    border: none;
    background-color: transparent;
    color: #9EAAA1;
    font-size: 14px;
}
.lang-button {
    cursor: pointer;
    padding: 2px 5px;
    border: none;
    background-color: #fff;
    color: #58765F;
    border-radius: 5px;
    font-size: 14px;
	font-weight:bold;
	transition: 0.5s all;
}

.lang-button:hover {
    background-color: #58765F;
	color: #fff;
}


/*모달 제목 내용 CSS*/
#modal-title-kr{
    display: block;
}
#modal-title-en{
    display: none;
}


.modal-body-title p{
    font-weight: 700;
    font-size: 26px;
    color: #00761A;
    word-break: keep-all;
}
.modal-body-title p b{
    font-size: 16px;
    color: #427B4F;
}
.modal-body {
    height: 126px;
    overflow-y: auto;
		margin: 26px 0;
}

.modal-body h3{
	font-weight:bold;
	font-size:35px;
	margin:5px 0;
	color: #00761a;
}

.modal-body p{
	word-break: keep-all;
	font-size: 15px;
	margin-bottom: 16px;
	color: #000;
	letter-spacing: -0.03em;
}
.modal-body p:last-child{
    margin-bottom: 0;
}

#modal-body-en h3{
    font-weight:bold;
    font-size:35px;
    margin:5px 0;
    color: #58765F;
}
#modal-body-en {
    display: none;
}
/* 스크롤바 커스터마이징 */
.modal-body::-webkit-scrollbar{
    width: 5px;
}
.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1; /* 트랙 배경색 */
    border-radius: 10px; /* 트랙 둥글게 */
}

.modal-body::-webkit-scrollbar-thumb {
    /* background: #00761a;  */
    /* background: #78967e; */
    background: #bed5c3;
    border-radius: 10px; /* 스크롤바 둥글게 */
}

/* 음성안내 */
#modal-tour-audio .audio_tit p{
	font-weight: 600;
	font-size: 18px;
	letter-spacing: -0.03em;
	color: #427B4F;
	margin-bottom: 4px;
}
#modal-tour-audio .audio_tit p.ss{
	font-weight: 400;
	font-size: 14px;
	color: #757E77;
	letter-spacing: -0.03em;
	margin-bottom: 16px;
}
#playingBar {
  width: 86px;
  height: 3px;
  background-color: #E5E7E5;
	border-radius: 6px;
	margin-bottom: 10px;
}
#progress {
  width: 0;
  height: 100%;
  background-color: #A1BBA7;
	border-radius: 6px;
}
.audio_control{
	width: 88px;
	display: flex;
	align-items: center;
	gap:8px;
}
.audio_control > div{
	width: 24px;
	cursor: pointer;
	position: relative;
}
.audio_control > div img{
	position: relative;
	z-index: 1;
}
.audio_control > div::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 100%;
	width: 28px;
	height: 28px;
	background-color: #D8DED9;
	transition: 0.5s all;
	opacity: 0;
}
.audio_control > div:hover::before{
	opacity: 1;
}
.audio_control .pause_play{}
.audio_control .stop{}
.audio_control .volume{}




/* 모달 하단 로고 */
.modal_btm_logo{
	position: absolute;
	bottom: 18px;
	right: 20px;
	width: 80px;
}


@media (max-width:1440px) {
    .modal-body{
        height: 105px;
        margin: 20px 0;
    }
    .modal-body p{
        font-size: 14px;
    }
    .modal-body-title p{
        font-size: 20px;
        line-height: 1.05;
    }
    .modal-body-title p b{
        font-size: 14px;
    }
    .lang-button{
        font-size: 12px;
    }
    .modal-header .k-tit{
        margin-top: 8px;
    }
    #modal-tour-audio .audio_tit p{
        font-size: 15px;
    }
    #modal-tour-audio .audio_tit p.ss{
        font-size: 12px;
        margin-bottom: 8px;
    }
    #playingBar{
        margin-bottom: 10px;
    }
}

@media (max-width:768px) {
    .modal{
        max-width: 420px;
        right: unset;
        left: 50%;
        transform: translate(-50%, 120%);
    }
    .modal.active{
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    .modal-content-display{
        border-radius: 8px;
    }
    .modal-image,
    .modal_doll{
        min-height: unset;
    }
    .modal-body p{
        font-size: 13px;
    }
    .modal-body-title p{
        font-size: 18px;
    }
    .modal-body-title p b{
        font-size: 13px;
    }
    .modal-body-art p{
        font-size: 12px;
    }
    .modal_btm_logo{
        width: 65px;
    }
}
@media (max-width:500px) {
    .modal{
        max-width: 85%;
        padding: 6px;
    }
    .modal-content{
        padding: 8px;
    }
    #close-modal{
        top: 12px;
        right: 12px;
    }
    #modal-tour-audio .audio_tit p{
        font-size: 13px;
    }
    #modal-tour-audio .audio_tit p.ss{
        font-size: 10px;
    }
    .modal-header .k-tit{
        font-size: 10px;
    }
}
@media (max-width:425px) {
    .modal-body-art p{
        font-size: 10px;
    }
    .modal_btm_logo{
        width: 60px;
        bottom: 8px;
        right: 10px;
    }
    
}









/* .modal-body::-webkit-scrollbar-thumb:hover {
    background: #4ed366; 
} */

/* 스크롤바 커스터마이징 */
/* .modal-body-en::-webkit-scrollbar {
    width: 5px; 
}

.modal-body-en::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-body-en::-webkit-scrollbar-thumb {
    background: #58765F; 
    border-radius: 10px; 
}

.modal-body-en::-webkit-scrollbar-thumb:hover {
    background: #4ed366; 
}
.modal-body-en::-webkit-scrollbar {
    width: 10px; 
} */


@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.img-tour-tag {
    animation: pulse 1s infinite;
}

/* 
@media (max-width: 600px) {
    .intro-text {
        bottom: 100px;
        left: 20px;
    }
    .intro-text h1 {
        font-size: 1.5em;
    }
    .intro-text h2 {
        font-size: 2em;
    }
    .intro-text p {
        font-size: 1em;
    }
    .center-text {
        font-size: 1.2em;
    }
    .intro-container {
        background-size: cover;
    }
    .intro-text::before {
        top: 100px;
        bottom: -80px;
        width: 2px;
    }
    .hover-text{
        right: 9%;
    }
    .guide-modal{
        width:90%;
    }
    .close-button{
        width:20px;
        height:20px;
        top:20px;
        right:20px;
    }
    .modal-content {
        width: 90%;
        max-width: none;
    }

    .modal-header, .modal-body, .modal-footer {
        padding: 20px;
    }

    .guide-title{
        margin:30px auto;
    }

    .modal-body p{
        font-size:0.8rem;
    }

	.modal-body h3{
        font-size:1.6rem;
    }

    .modal-body-en p{
        font-size:0.8rem;
    }

	.modal-body-en h3{
        font-size:1.6rem;
    }

    .modal-header .title .main-title{
        font-size: 0.8rem;
    }

    .modal-header .title .sub-title{
        font-size: 1.2rem;
    }


} */
