﻿

.main-menu__logo {
    position: relative;
    display: block;
    padding: 15px 0;
    padding-right: 50px;
    z-index: 1;
}
.main-menu__top-time {
    margin-left: 40px;
}
.main-slider .swiper-slide {
    min-height: 800px;
}

.main-slider__bg-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none !important;
    background: none !important;
    z-index: 1;
}
.section-title__title {
    color: var(--hotelux-black);
    font-size: 30px;
    line-height: 46px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 5px 0 0;
}
.our-rooms__extra-service span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10px 0;
    width: 100px;
    height: 30px;
    background-color: var(--hotelux-white);
}
.font-14{
        font-size: 14px !important;
}

.font-20 {
    font-size: 20px !important;
}

.contact-one__img {
    position: absolute;
    bottom: unset !important;
    right: 0;
}

@media (max-width: 768px) {
    .main-slider .swiper-slide {
    min-height: 195px;
}
  .main-slider__bg {
    height: auto; 
  }

  .main-slider__bg img {
    object-fit: contain; 
    height: 100%;
    width: 100%;
  }
}

section {
  scroll-margin-top: 100px;
}

/* Language Switcher Styles */
.main-menu__language-switcher {
  position: relative;
  display: block;
}

.main-menu__language-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--hotelux-black);
  text-decoration: none;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.main-menu__language-icon:hover {
  color: var(--hotelux-base);
  background-color: rgba(0, 0, 0, 0.05);
}

.main-menu__language-switcher .dropdown-menu {
  min-width: 150px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  margin-top: 10px;
}

.main-menu__language-switcher .dropdown-item {
  padding: 10px 20px;
  font-size: 14px;
  color: var(--hotelux-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__language-switcher .dropdown-item:hover,
.main-menu__language-switcher .dropdown-item.active {
  background-color: var(--hotelux-base);
  color: var(--hotelux-white);
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 25px 0;
}

/* Mobile Language Switcher - Ẩn trên desktop/tablet */
.main-menu__mobile-language-switcher {
  display: none;
}

@media (max-width: 768px) {
  .main-menu__left {
      text-align: center;
      width: 70%;
  }
  .main-menu__logo {
    padding-right: 0px;
}

.main-menu__left {
  display: flex;
  justify-content: flex-end; /* đẩy nội dung sang phải */
  align-items: center;       /* giữ logo cân giữa theo chiều dọc */
  gap: 1rem;                 /* nếu còn phần tử khác thì có khoảng hở */
}

  .main-menu__logo img {
      margin: 0 auto;
      display: block;
  }
  .main-menu__right {
    display: none !important;
  }
  
  /* Hiển thị language switcher trên mobile */
  .main-menu__mobile-language-switcher {
    display: flex;
    align-items: center;
    margin-right: 15px;
  }
  
  /* Điều chỉnh kích thước icon cho mobile */
  .main-menu__mobile-language-switcher .main-menu__language-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
  }
  
  /* Điều chỉnh layout của main-menu-box để hiển thị language switcher và menu button cạnh nhau */
  .main-menu__main-menu-box {
    display: flex;
    align-items: center;
  }
}

/* Room Images - Đồng nhất kích thước hình ảnh phòng */
.our-rooms__img {
    height: 100%;
    min-height: 280px;
}

.our-rooms__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Reuse counter-one icon treatment inside Services Two */
.services-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: 0 auto 18px; /* keeps existing alignment */
  background-color: var(--hotelux-base);
  border-radius: 50%;
}

.services-two__icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(var(--hotelux-white-rgb), 0.5);
  border-radius: 50%;
}

.services-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: var(--hotelux-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.services-two__single:hover .services-two__icon span {
  animation: wobble-horizontal-hover 1s ease-in-out 1;
}

.services-two__single {
  position: relative;
  display: block;
  background-color: var(--hotelux-primary);
  padding: 10px 10px 10px 10px !important;
  text-align: center;
  margin-bottom: 30px;
}
