.HeroSlider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.HeroSlide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.HeroSlide .container {
  max-width: 800px;
}

.HeroSlide img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
}

.HeroSlide button {
  background-color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  font-weight: bold;
  margin-left: 10px;
}

.slick-dots li button:before {
  color: #fff;
}
.nav-logo h1 {
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
}

.btn-outline-dark,
.btn-outline-light {
  border-radius: 0;
  font-family: "Gilda Display", serif;
  font-weight: 600;
}
.RoomSlider figure {
  position: relative;
  width: 100%;
  height: 500px;
}
.RoomSlider figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-section {
  margin-bottom: 30px;
}
.menu-section .menu-items li {
  padding: 10px 0;
}
.Promotion{
    background-image: url('../../img/bg-1.jpg');
}
.round-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-circle {
  width: 120px;
  height: 120px;
  border: 8px solid #f3f3f3;
  border-top: 8px solid #8a1b61; /* Gold accent color */
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
  position: absolute;
}

.loader-logo {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-logo img {
  max-width: 100%;
  max-height: 100%;
  animation: pulse 2s ease infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}
.nav-link {
    color: #fff !important;
}