/* ===== Header Layout ===== */
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px; /* Equal left & right spacing */
}

.header-logo {
  margin-right: 40px !important; /* Space between logo and nav menu */
}

.header-nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: space-between;
}

.header-nav .collapse {
  margin-left: 0 !important;
  flex-grow: 1;
}

/*====== Left Menu ====== */
.header-left-menu li a {
  position: relative;
  display: inline-block;
  color: #333;
  padding: 8px 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-left-menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #b58933; /* gold tone */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1; /* keep it behind text */
  border-radius: 4px; /* optional */
}

.header-left-menu li a:hover::before {
  opacity: 0.15; /* adjust transparency */
}

.header-left-menu li a:hover {
  color: #b58933;
}

/* ===== Right Menu ===== */
.header-right-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-left: auto;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

/* ===== Menu Links ===== */
.header-right-menu li a {
  position: relative;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Animated underline effect */
.header-right-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #b58933;
  transition: width 0.3s ease;
}

.header-right-menu li a:hover::after {
  width: 100%;
}

/* ===== Reservations link highlight ===== */
.header-right-menu li:first-child a {
  font-weight: 700;
  color: #b58933;
  position:relative;
}

.header-right-menu li:first-child a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #b58933;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.header-right-menu li:first-child a:hover {
  color: #8f6a26;
}

.header-right-menu li:first-child a:hover::after {
  width: 100%;
  background-color: #8f6a26;
}

/* ===== Newsletter Icon ===== */
.header-right-menu li a.newsletter-signup::after {
  display: none; /* disable underline pseudo-element */
}

.header-right-menu li a i {
  font-size: 18px;
  color: #555;
  transition: color 0.3s ease;
}

.header-right-menu li a:hover i {
  color: #b58933;
}

.header-right-menu li a:hover{text-decoration:none;}
.header-right-menu li a.newsletter-signup:hover{text-decoration:none;}
