/* 메인 사진 */
.picture-section{
    width:100%;
    height:50vh;
    z-index: 1;
}

.picture-title{
  width: 100%;
  height: 100%;
  text-align: center;
  align-items: center;
  background-color: rgba(0,0,0,0.5);
  position: relative;
}

.picture-title div{
  position: absolute;
  width:100%;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.picture-title h2{
  color: #f6f6f6;
  font-size: 3rem;
}

.picture-title p{
  color: #aaa;
  font-size: 1.2rem;
}
/* 룸 타입 */

.room-type-section{
  position: relative;
  width:100%;
  height: 50px;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.room-type-section div{
  width: 100px;
  display: block;
  height: 100%;
}

.room-type-section div a{
  position: relative;
  display: block;
  height:100%;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  border-left: 1px solid #000;
}

.room-type-section div a p{
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.room-type-spotlight{
  background-color: rgba(0,0,0,0.5);
  color: white;
  font-weight: bold;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  border-left: 3px solid #000;
}


/* 메인 설명 */
.information-section{
    width:100%;
    height: 60vh;
    position: relative;
    display: flex;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.information-section > ul{
    width:40%;
    height: auto;
    margin: auto auto;
}

.information-section > ul > li{
    list-style: circle;    
    display: flex;
    margin-bottom: 20px;
}

.information-section > ul > li > strong{
  margin-right: 5px;
}

.rb, .eq{
  width: calc(90% - 95px);
}

.rb > li, .eq > li{
  float: left;
  margin-right: 5px;
}

/* 사진 스와이프 */

.swiper {
    position: relative;
    width: 100%;
    height: 60vh;
    background-color: #f6f6f6;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide {
  width: 60%;
}

/* 하단 섹션 */
.foot-section{
    width: 100%;
    height: 10vh;
    background-color: #f6f6f6;
    text-align: center;
    position: relative;
}

.foot-section h2{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1200px) {
  .information-section li{
    font-size: 10px;
  }
}


@media screen and (max-width: 768px) {
    .picture-section{
      height:50vh;
  }

  .room-type-section{
    height: 40px;
  }

  .information-section > ul{
    width:45%;
  }
  .picture-title h2{
    font-size: 2rem;
  }

  .picture-title p{
    font-size: 1rem;
  } 

  .information-section{
    height: 30vh;
  }

  .rb, .eq{
    width: calc(90% - +40px);
  }
  
  .swiper {
    height: 40vh;
  }



}