.language_menu {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 1000;
  font-family: sans-serif;
}

.language_toggle {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}

.language_list {
  margin-top: 5px;
  padding: 0;
  list-style: none;
  position: absolute;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: none;
  min-width: 60px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.language_list li {
  padding: 8px 10px;
  cursor: pointer;
  font-size: 13px;
  text-align: center;
}

.language_list li:hover {
  background-color: #f0f0f0;
}

.language_list li.selected {
  background-color: #007BFF;
  color: white;
  font-weight: bold;
}


/* Swiper pagination style 02 */
.swiper-pagination-style-2 .swiper-pagination-bullet {
  background-color: #fee300;
}



@media (max-width: 767px) {
  .nav-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .nav-tabs .nav-item {
    white-space: nowrap;
  }
}




/* 호텔소개 섹션 안에서만 오버라이드 */
.feature-icons-bottom .feature-box {
  display: flex;
  flex-direction: column-reverse;
  height: 100%;
}

.feature-icons-bottom .feature-box-icon {
  margin-top: auto;                 /* 아래로 밀착 */
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.feature-icons-bottom .feature-box-icon img {
  display: block;                   /* inline 제거 */
}

#loadingOverlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 9999;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.loadingBar {
  width: 50%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}

.loadingBar::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 30%;
  background: #3498db;
  animation: loadingMove 1.5s infinite ease-in-out;
  border-radius: 4px;
}

@keyframes loadingMove {
  0% { left: -30%; }
  50% { left: 50%; }
  100% { left: 100%; }
}
