.custom-navbar {
  background-color: #000000 !important;
  padding: 1rem 1.5rem;
  min-height: 70px;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.custom-navbar .container-fluid {
  justify-content: center;
}

/* Desktop navigation */
.navigation-items {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.nav-item-custom {
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-item-custom:hover {
  color: #BC2023 !important;
}

.dropdown-icon {
  font-size: 0.75rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

/* Custom hamburger button */
.custom-toggler {
  border: none;
  border-radius: 4px;
  padding: 0.5rem;
  background: transparent;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

.custom-toggler:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Desktop dropdown styling */
.dropdown-menu {
  background-color: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 0.375rem;
  margin-top: 0.5rem;
}

.dropdown-item {
  color: #ffffff;
  font-size: 0.875rem;
  padding: 0.75rem 1.25rem;
}

.dropdown-item:hover {
  background-color: #333333;
  color: #ffffff;
}

/* Mobile Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: #121212;
  z-index: 1050;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu.show {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
  border-bottom: 1px solid #333333;
}

.close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.close-btn:hover {
  color: #cccccc;
}

.mobile-menu-content {
  padding: 1rem 0;
}

.mobile-menu-item {
  display: block;
  padding: 1rem 1.5rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #333333;
  transition: background-color 0.2s ease;
}

.mobile-menu-item:hover {
  background-color: #2a2a2a;
  color: #ffffff;
}

.mobile-dropdown {
  border-bottom: 1px solid #333333;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  color: #ffffff;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background-color 0.2s ease;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.mobile-dropdown-toggle:hover {
  background-color: #2a2a2a;
}

.mobile-dropdown-toggle.active {
  background-color: #2a2a2a;
}

.mobile-dropdown-toggle.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  background-color: #0d0d0d;
  transition: max-height 0.3s ease;
}

.mobile-dropdown-menu.show {
  max-height: 300px;
}

.mobile-dropdown-item {
  display: block;
  padding: 0.75rem 2.5rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

.mobile-dropdown-item:hover {
  background-color: #1a1a1a;
  color: #ffffff;
  padding-left: 3rem;
}

.nav-item-custom.dropdown-toggle::after {
  display: none;
}

/* Responsive */
@media (max-width: 1199px) {
  .desktop-nav {
    display: none !important;
  }
  .custom-navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 0;
    min-height: 60px;
  }
  .custom-navbar .custom-toggler {
    padding: 0;
    opacity: 0.75;
  }
  .hero-section {
    margin-top: 60px;
  }
  .logo-nav {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .mobile-toggler {
    display: none !important;
  }
  .mobile-menu,
  .menu-overlay {
    display: none !important;
  }
}
@media (max-width: 575.98px) {
  .mobile-menu {
    width: 85%;
    right: -85%;
  }
  .logo-nav {
    width: 40%;
    margin-left: -1.5rem;
  }
}
@media (max-width: 480px) {
  .logo-nav {
    width: 60%;
  }
}
* {
  font-family: "Open Sans";
}

a:hover {
  text-decoration: none;
}

body {
  background-color: #000;
  display: flex;
  justify-content: center;
}
body.limit-height {
  max-height: 150vh;
}

.wrapper {
  width: 100%;
}

#wrapper-content {
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  #wrapper-content {
    padding-top: 5rem;
  }
}

.w-90 {
  width: 90% !important;
}

.w-80 {
  width: 80% !important;
}

.footer {
  background-color: #000;
}
.footer .container-fluid {
  background: url(../../images/footer.png) no-repeat center/cover;
  padding-top: 8rem;
}
.footer-banner {
  background-color: #000;
}
.footer-banner img {
  width: 100%;
}
.footer-banner-btn-booking {
  position: absolute;
  height: 100%;
  width: 90%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.footer-banner-btn-booking a {
  color: #fff;
  text-decoration: none;
  background-color: #BC2023;
  padding: 0.5rem 1.5rem;
  border-radius: 0;
  font-weight: 200;
}
.footer-banner-btn-booking a:hover {
  text-decoration: none;
  color: #fff;
}
.footer-banner .banner-mb {
  display: none;
}
.footer-left {
  display: flex;
  align-self: center;
  flex-wrap: wrap;
}
.footer-left p {
  margin-top: 5rem;
  font-size: 0.75rem;
}
.footer-right h3 {
  font-size: 0.9rem;
  color: #fff;
}
.footer-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-right ul li {
  margin-bottom: 0.5rem;
}
.footer-right ul a {
  font-size: 0.75rem;
  color: #fff;
}
.footer-right ul a:hover {
  text-decoration: none;
  color: #BC2023;
}
.footer-line {
  width: 100%;
  height: 1px;
  background-color: #BC2023;
  margin-top: 5rem;
}
.footer-info-item .info-details {
  color: #fff;
}
.footer-info-item .info-details p {
  margin: 0;
  font-size: 0.75rem;
}

@media screen and (max-width: 992px) {
  .footer-info-item {
    margin-bottom: 1rem;
  }
  .footer-info-item .info-details p {
    font-size: 0.75rem;
  }
  .footer-info-item .info-icon {
    margin-right: 0.5rem !important;
  }
  .footer-info-item .info-icon img {
    height: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-banner-btn-booking a {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .footer-left a {
    text-align: center;
  }
  .footer-left a img {
    width: 70% !important;
  }
  .footer-left p {
    margin-top: 2rem;
    margin-bottom: 5rem;
  }
  .footer-info-item {
    margin-bottom: 2rem;
  }
  .footer-info-item .info-icon {
    margin-right: 1.5rem !important;
  }
  .footer-info-item .info-icon img {
    height: 1.25rem;
  }
  .footer-info-item .info-details p {
    font-size: 0.75rem;
  }
  .footer-info {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .footer-banner .banner-mb {
    display: block !important;
  }
  .footer-banner .banner-web {
    display: none !important;
  }
  .footer-banner-btn-booking a {
    top: 108%;
  }
}