body {
  transition: background-color 0.3s, color 0.3s;
  font-family: "Montserrat", sans-serif !important;
}
.navbar {
  background-color: #fff;
}
.toggle-mode {
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(144, 12, 1, 0.15);
}
/* booking hero section */
.hero {
  background-color: rgba(144, 12, 1, 0.15);
}

.container {
  width: 100% !important;
}
.hero-section .hero-img img {
  max-width: 100%;
  border-radius: 10px;
  filter: drop-shadow(1px 1px 15px rgba(0, 0, 0, 1));
}
.hero-section button,
.hero-section .booking-btn {
  background: #900c01 !important;
  color: #fff;
}
.booking-btn {
  background: #900c01 !important;
  color: #fff;
}
.hero-section button:hover,
.hero-section .booking-btn:hover {
  background: #900c01aa;
  color: #fff;
}
.hero-section h1 {
  color: #2d3436;
  font-size: 36px;
}
.item-divider {
  width: 60%;
  height: 1px;
  background-color: #900c01;
  margin-left: auto;
  margin-right: 5px;

}

/* Menu Filter Buttons */
.hidden-div {
  display: none;
}


.active-div {
  display: block;
}

.labels .btn::before {
  content: '';
  margin-right: 8px;
  display: none;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #900c01;
  border-radius: 50%;
  vertical-align: middle;
}

.labels .btn.active::before {
  display: inline-block;
}

.labels button {
  border: 2px solid #900c01;
  background: rgba(144, 12, 1, 0.15);
  border-radius: 0.5rem;
}

/* Menu Design */
.menu h4 {
  background-color: #900c01;
  color: #fff;
  box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 1);
  width: fit-content;
  font-weight: bold;
}

.list-group-item {
  background: #fff;
  padding: 8px 5px;
}

/* Contact Section */
.contact {
  background-color:  rgba(45, 52, 54, 0.15);; 
}
.contact .border {
  border-left: 5px solid #2d3436 !important;
}

/* Footer Section */
 footer{
  background-color: #2d3436;
}

/* Styling for the back-to-top button */
#backToTop {
  position: fixed;
  bottom: 50px;
  right: 20px;
  display: none;
  z-index: 999;
}

/* Apply right border only on large screens */
.border-end-lg-only {
  border-right: 2px solid #dee2e6;
  /* Adjust color and thickness as needed */
}

@media (max-width: 991.98px) {

  /* Remove border on smaller screens */
  .border-end-lg-only {
    border-right: none;
  }
}

