* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100vw;
  overflow-x: hidden;
  font-family: "SCoreDream";
}

body,
html {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "SCoreDream";
  background-color: #000000;
}

/* 컬러칩 */
:root {
  --fff-color: #fff;
}

.wrap {
  width: 100vw;
  position: relative;
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  overflow-x: hidden;
}

/*txt*/
.sub-title{
  font-size:60px;
  font-weight: 600;
  color: #F1EAD9;
  text-align: center;
  margin-bottom: 120px;
}
.refer{
  text-align: center;
  color: #ffffffb7;
  margin-top: 100px;
}

/*---------- main section ----------*/
.main-section{
  position: relative;
  width: 100%;
  height:100vh;
  background: linear-gradient(to bottom right, #000000, #1A154D);
}
.main-section h1{
  color: #fff;
  font-size: 95px;
  font-weight: 700;
  line-height: 115px;
  margin-bottom: 30px;
}
.main-section h4{
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 100px;
  background: linear-gradient(to bottom right, #FFDF8D, #5C5CDE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.content{
  padding: 160px 0 0 105px ;
}

/*ㄴ main-section timer*/


.timer-title {
  font-size: 36px;
  margin-bottom: 30px;
  color: #ccc;
}
.timer {
  display: flex;
  gap: 5px;
  align-items: center;
  
}
.flip-card {
  background-color: #6A6A77;
  border-radius: 12px;
  display: inline-block;
  font-size: 75px;
  line-height: 110px;
  text-align: center;
  width: 85px;
  height: 110px;
  position: relative;
  box-shadow: 0 2px 5px rgba(0,0,0,0.7);
  color: #fff;
  font-weight: 600;
}
.flip-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(0,0,0,0.5);
}
.colon {
  font-size: 40px;
  margin: 0 5px;
  color: #ccc;
}
/* ㄴmain-section main-img*/
.main-s24{
  position: absolute;
  right: 105px;
  top: 50%;
  transform: translateY(-50%);
  width: 30%;
  height: auto;
  max-height: 95vh;
  filter: drop-shadow(10px 6px 6px #00000079);
  animation: float 3s ease-in-out infinite;
}
.main-section::before{
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50vw;
  height: 25vw;
  background:#5d479147;
  border-top-right-radius: 25vw;
  border-top-left-radius: 25vw;
}

@keyframes float {
  0% {
    transform: translateY(-50%) translateY(0);
  }
  50% {
    transform: translateY(-50%) translateY(-10px); /* 위로 떠오르는 정도 조정 */
  }
  100% {
    transform: translateY(-50%) translateY(0);
  }
}

/*---------- detail section ----------*/
.detail-section{
  padding: 160px 105px;
  text-align: center;
}

/*ㄴ detail section 종류 선택*/
.sel-all{
  width: 100%;
  margin-bottom:320px;
}

.sel-box{
  width: 100%;
  display: flex;
  gap: 70px;
}
.box{
  width: calc( 100%/3);
  text-align: center;
}
.box img{
  width: 87%;
  height: auto;
  margin-bottom: 50px;
}
.box button{
  width: 100%;
  height: 90px;
  background-color: #CCBA91;
  color: #000000;
  font-size: 35px;
  font-weight: 500;
  border-radius: 300px;
  border: 3px solid transparent; /* 초기 테두리는 투명 */
  cursor: pointer;
  transition: border 0.3s ease-in-out; 
}
.box button:hover{
  border: 3px solid #fff;
}

.detail-section h5{
  color: #fff;
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 75px;
}

.s24-info{
  width: 100%;
  display: flex;
  gap: 30px;
  margin-bottom:350px;
}

.info-box{
  width: 25%;
}

.info-box img{
  width: 100%;
  height: auto;
}

.event{
  margin-bottom: 120px;
}

.event02{
  width: 100%;
  display: flex;
  gap: 30px;
}

.event02 img{
  width:calc( 100%/2 - 30px);
}

/*reser-section : 사전예약 신청 폼*/
.reser-section{
  width: 100%;
  padding: 160px 105px;
  margin-bottom: 120px;
}
.reser-form{
  width: 100%;
  padding: 60px;
  background-color: #202125;
  border-radius: 30px;
  color: #fff;;
}

.reser-form span{
  font-size: 40px;
}

.reser-form input[type="text"],.reser-form select{
  background-color: #414245;
  width: 100%;
  height: 80px;
  line-height: 80px;
  border-radius: 15px;
  border: 3px solid transparent;
  transition: border 0.3s ease-in-out; 
  padding: 15px 40px 15px 15px;
  margin: 20px 0 50px 0;
  color: #fff;
  font-size: 25px;
}

.reser-form input::placeholder,.reser-form select::placeholder{
  font-size: 25px;
  color: #d9d9da9d;
}

input[type="checkbox"]{
  appearance: none; 
  -webkit-appearance: none;
  -moz-appearance: none; 
  width: 30px;
  height: 30px;
  background-color: #f0f2f800;
  border: 1px solid #bbb;
  border-radius: 50%; 
  outline: none;
  position: relative;
  vertical-align: middle;
  padding: 0;
  margin: 0 15px 0 0;
  cursor: pointer;
}

input[type="checkbox"]::before{
  content: '\2713';
  font-size: 20px;
  font-weight: 700;
  color: #bbb;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

input[type="checkbox"]:checked{
  background:#fff;
  border: none;
  color: #ffffff63;
}

.reser-form button{
  width: 100%;
  height: 90px;
  background-color: #CCBA91;
  color: #000000;
  font-size: 35px;
  font-weight: 500;
  border-radius: 300px;
  border: 3px solid #ffffff00; /* 초기 테두리는 투명 */
  cursor: pointer;
  transition: border 0.3s ease-in-out; 
  margin-top: 50px;
}
.reser-form button{
  border: 3px solid #fff;
}

.go-detail{
  width: 100%;
  display: flex;
  color: #fff;
  justify-content: space-between;
}

.go-detail p{
  cursor: pointer;
}

.go-detail div{
  color: #fff;
}

/*개인정보 동의 팝업*/
.pop-wrap{
  width: 100%;
  padding: 0 105px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.651); /* 반투명한 검정 */
  z-index: 10;   
}

.pop-wrap.active {
  opacity: 1;
  visibility: visible;
  position: absolute;
  z-index: 1;
}

.container{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-height: 1500px;
  padding: 50px;
  background: rgb(255, 255, 255);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow-y: scroll;
  backdrop-filter: blur(25px);
  z-index: 99;
  overflow-x: hidden;
}

.pop-title {
  display: flex;
  justify-content: space-between;
  height: 35px;
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 40px;
  line-height: 35px;
}

.pop-title button{
  background: #fff;
  border: none;
  cursor: pointer;
}


.container h2 {
  width: 100%;
  text-align: left;
  font-size: 35px;
  color: #202125;
  font-weight: 600;
}


/*list-section*/
.list-section{
  width: 100%;
  padding: 160px 105px;
}
.list-area{
  width: 100%;
  padding: 60px;
  background-color: #202125;
  border-radius: 30px;
  color: #fff;;
  max-height: 350px;
  overflow-y: scroll;
}

.list-area li{
  width: 100%;
  height: 60px;
  background-color: #ebdcab7e;
  margin-bottom: 30px;
  text-align: center;
  line-height: 60px;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-area li p{
  width: 25%;
}

.list-area li:last-child{
  margin: 0;
}

footer{
  background-color: #4b4944;
  text-align: center;
  height: 80px;
  color: #ffffffcb;
  line-height: 80px;
}

/*---------- qa-section ----------*/
.qa-section{
  width: 100%;
  padding:160px 105px;
}

.notice-all{
  width: 100%;
}

.notice-set{
  width: 100%;
  background-color: #202125;
  border-radius: 15px;
  color: #fff;
  padding: 25px;
  margin-bottom: 25px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.notice-set:hover {
  background-color: #2b2c31;
}

.notice-set:last-child{
  margin: 0;
}

.qa-title{
  width: 100%;
  font-size: 30px;
  padding-bottom: 0; 
  transition: padding-bottom 0.5s ease; 
  font-weight: 600;
  background-image: url('../img/draw_off.png');
  background-repeat: no-repeat;
  background-size: 15px auto;
  background-position: 100% 45%;
}

.qa-title.active {
  background-image: url('../img/draw_on.png');
  padding-bottom: 20px; 
}

.qa-sub{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0; 
  margin-top: 0;  
  border-top: 1px solid #fff;
  font-size: 20px;
  transition: 
    max-height 0.5s ease, 
    opacity 0.5s ease, 
    padding 0.5s ease, 
    margin 0.5s ease;
}

/*애니 효과*/
.step {
  opacity: 0;           
  transform: translateY(30px); 
  transition: opacity 0.9s, transform 0.9s; 
}

/* 애니메이션이 활성화되면 */
.step.active {
  opacity: 1;
  transform: translateY(0); 
}



/*반응형*/
@media (min-width:1380px) and (max-width: 1470px){
  .main-s24{
    width: 25%;
  }
}

@media (min-width:1279px) and (max-width: 1380px){
  .main-s24{
    width: 22%;
  }
}

@media (min-width:800px) and (max-width: 1279px){
  .main-s24{
    display: none;
  }
}

@media(max-width : 800px){
  .main-section{
    text-align: center;
    height: auto;
    padding: 120px 0;
  }

  .event,.reser-section{
    margin-bottom:0;
  }

  .sel-all,.s24-info{ margin-bottom: 120PX;}
  .content{ padding: 0 15px; }

  .main-section h1{
    font-size: 65px;
    word-break: keep-all;
    line-height: 90px;
  }

  .main-section h4{ font-size: 50px;}
  .main-s24{ display: none; }


  .sub-title{
    font-size:40px;
    word-break: keep-all;
    margin-bottom: 70px;
    line-height: 58px;
  }

  .detail-section,.reser-section,.list-section{ padding: 50px 15px; }
  .list-section{
    margin-bottom: 50px;
  }

  .sel-box{
    flex-wrap: wrap;
    flex-direction: row;
    gap: 100px;
  }

  .s24-info,.event02{
    flex-wrap: wrap;
    flex-direction: row;
    gap: 15px;
  }

  .refer{
    margin-top: 50PX;
  }

  .box{ width: 100%; }
  .info-box{ width: calc(50% - 8px ); }
  .event02 img{ width:calc( 100% - 2px); }

  .reser-form,.list-area,.qa-section{
    padding: 20px 15PX;
    border-radius: 15px;
  }

  .reser-section{ margin-bottom: 70px;}
  .reser-form span{ font-size: 20PX;}
  .reser-form input::placeholder,.reser-form select::placeholder,.reser-form select{
    font-size: 15px;
  }

  .box button,.reser-form button{
    height: 70px;
    font-size: 25px;
  }

  .reser-form select{
    border-radius: 10px;
  }
  .reser-form input[type="text"]{
    height: 60px;
    line-height: 45px;
    padding: 7px 7px 14px 7px;
    border-radius: 10px;
    margin: 20px 0 30px 0;
  }

  .reser-form select{
    height: 60px;
    line-height: 45px;
    padding: 7px;
  }

  .go-detail{
    display: block;
  }

  .check{
    width: 100%;
    margin-bottom: 30px;
  }

  .input[type="checkbox"]{
    width: 15px;
  }

  .pop-wrap{
    padding: 0 15px;
  }

  .container{
    width: 90%;
    padding: 15px;
  }

  .container h2,.pop-title button{
    font-size: 20px;
  }

  .pop-title{
    margin-bottom: 20px;
  }

  .container p{
    line-height: 22px;
  }

  .flip-card {
    font-size: 45px;
    border-radius: 8px;
  }
  .list-area li{
    margin-bottom: 15px;
  }

  .timer-container,.timer{
    justify-content: center;
  }
  
  .colon {
    font-size: 40px;
    margin: 0;
    color: #ccc;
  }

  .notice-all{
    width: 100%;
  }
  
  .notice-set{
    width: 100%;
    background-color: #202125;
    border-radius: 15px;
    color: #fff;
    padding: 25px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 8px;
  }
  .notice-set:last-child{
    margin-bottom: 30px;
  }
  .qa-title{
    font-size: 18px;
  }
  
  .qa-title.active {
    background-image: url('../img/draw_on.png');
    padding-bottom: 20px; 
  }
  
  .qa-sub{
    font-size: 14px;
    line-height: 20px;
  }
}
