html {
  scroll-behavior: smooth;
}

@media (min-width: 992px) {
  .navbar-collapse.mt-lg-n5 {
    margin-top: -7rem !important;
  }
}
/* Logo Styling */
.imges {
  height: 80px;
  width: auto;
  max-width: 100%;
}
.nav-link {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: white !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}
.nav-link:hover {
  color: #00706e !important;
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 10px !important;
}
.nav-item {
  margin-right: 12px !important;
}

@media (max-width: 968px) {
  .imges {
    height: 50px;
    width: auto;
  }

  .navbar-toggler {
    position: relative;
    top: -50px;
    padding: 0.25rem 0.5rem;
  }
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: transparent !important;
  color: black !important;
}
.dropdown-item:hover {
  background-color: lightgray !important;
}

@media (max-width: 1024px) {
  #languageDropdown + .dropdown-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    z-index: 100;
    min-width: 160px;
  }

  #languageDropdown + .dropdown-menu .dropdown-item {
    text-align: center;
  }
}

/* catering button */
.cateringmenubtn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 10px;
}

.cateringmenubtn a {
  color: white !important;
  text-decoration: none !important;
}

.cateringmenubtn {
  background-color: transparent;
  outline: none;
  border: none;
  padding: 0;
  margin: 0 5px;
  position: relative;
  display: inline-block;
  width: 190px;
  height: 42px;
}

/* Styled anchor inside the button */
.cateringmenubtn a {
  display: inline-block;
  background-color: #00706e;
  color: white;
  border-radius: 10px;
  text-transform: uppercase;
  padding: 10px 0;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Custom dashed border effect */
.cateringmenubtn::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 5px;
  padding: 0;
  background: repeating-linear-gradient(
      90deg,
      #00706e 0,
      #00706e 6px,
      transparent 6px,
      transparent 12px
    ),
    repeating-linear-gradient(
      180deg,
      #00706e 0,
      #00706e 6px,
      transparent 6px,
      transparent 12px
    ),
    repeating-linear-gradient(
      270deg,
      #00706e 0,
      #00706e 6px,
      transparent 6px,
      transparent 12px
    ),
    repeating-linear-gradient(
      0deg,
      #00706e 0,
      #00706e 6px,
      transparent 6px,
      transparent 12px
    );
  background-position: top, right, bottom, left;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
  z-index: 1;
}

/* Catering menu item spacing */
.catering-menu-item {
  margin-right: 0.5rem !important; /* Reduced right margin */
}

/* Removed hover effect on catering menu text */

.dropdown-menu {
  min-width: 150px;
}
