.header {
  height: 100px;
  position: sticky;
  width: 100%;
  z-index: 1000;
  top: 0;
  background-color: #fff;
  font-size: 12px;
}

.header .header__logo {
  width: 120px;
  background-color: black;
}

.header .booking-btn {
  outline: none;
  border: none;
  color: white;
  background-color: black;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  transition: all 0.25s ease-in;
}

.header .booking-btn:hover {
  background-color: #333;
}

.dropdown__container {
}

.dropdown__text {
  padding: 10px;
  border-bottom: 1px solid white;
  transition: 0.15s ease-in;
  position: relative;
}

.bridge__element {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 50px;
}

.dropdown__menu {
  display: block;
  position: relative;
  left: 0;
  top: 100px;
  background-color: white;
  z-index: 1000;
  border-top: 1px solid gray;
  padding: 0 144px;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  transition: max-height 0.5s ease-in-out, opacity 0.4s ease,
    visibility 0.4s ease, padding 0.4s ease;
}

.dropdown__text:hover + .dropdown__menu,
.bridge__element:hover + .dropdown__menu,
.dropdown__menu:hover {
  opacity: 1;
  visibility: visible;
  max-height: 800px;
  padding: 30px 144px;
}

.dropdown__menu .col-md-3 {
  margin-right: 12px;
}

.dropdown__menu a {
  cursor: pointer;
  text-decoration: none;
  color: var(--text-color);
  max-width: 300px;
  text-align: left;
}

.dropdown__menu .header__sm-img {
  width: 100%;
  height: 100%;
  max-height: 150px;
  object-fit: cover;
}

.dropdown__text:hover {
  border-bottom: 1px solid black;
}

.highlight-text {
  font-weight: bold;
}

.category-list {
  list-style: none;
  padding: 0;
}

.category-list li {
  padding: 8px 0;
  border-bottom: 1px solid #ccc;
}

.category-list li a {
  text-decoration: none;
  color: var(--text-color);
  display: block;
  transition: color 0.3s ease-in-out;
}

.category-list li:hover a {
  color: #007bff; /* Màu xanh dương khi hover */
}

.image-section {
  position: relative;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-left: 20px;
}

.dropdown__menu .title {
  color: var(--text-color);
  font-size: 46px;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
}

.main-title,
.sub-title {
  color: var(--text-color);
  font-size: 45px;
  margin: 0;
}

.main-title {
  font-weight: 500;
}
.sub-title {
  font-weight: 800;
}

/* Booking Modal */
.modal-header {
  border-bottom: none;
  position: relative;
}
.modal .btn-close {
  position: absolute;
  top: 25px;
  right: 25px;
}
.modal-title {
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}
.form-label {
  font-weight: 600;
}
.required {
  color: red;
}
.submit-btn {
  background-color: black;
  color: white;
  padding: 10px 20px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  margin: auto;
}
.submit-btn:hover {
  background-color: #333;
}
.submit-btn svg {
  margin-left: 10px;
}
.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #444;
}
.hamburger-menu {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

.offcanvas-body .menu-link {
  display: flex;
  flex-direction: column;
}

.offcanvas-body .dropdown__menu {
  display: none;
  flex-direction: column;
  padding-left: 10px;
}

.offcanvas-body .dropdown__container:hover .dropdown__menu {
  display: flex;
}

.custom-sidebar {
  width: 100%;
  background-color: #f8f9fa;
}

.custom-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-menu-title {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  display: block;
  padding: 10px 0;
  cursor: pointer;
}

.collapse-title::before {
  content: "▾";
  float: right;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.collapse-title[aria-expanded="true"]::before {
  transform: rotate(180deg);
}

.custom-submenu {
  list-style: none;
  padding-left: 20px;
}

.custom-submenu a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  display: block;
  padding: 5px 0 10px;
  text-transform: uppercase;
}

.custom-submenu a:hover {
  color: #007bff;
}

/* Áp dụng cho màn hình nhỏ hơn 1180px  */
@media screen and (max-width: 1180px) {
  .header > .d-flex {
    display: none !important;
  }

  .header .menu-link {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .header__logo {
    width: 150px; /* Giảm kích thước logo */
  }

  .hamburger-menu {
    display: block;
  }
}

.booking-small-screen-btn {
  padding: 10px !important;
  border-radius: 5px !important;
}

.booking-section {
  margin-top: 20px !important;
}
