/* ===== HEADER STYLE ===== */
.custom-navbar {
  background: rgb(0 0 0 / 77%) !important;
  padding: 8px 0;
  width: 100vw;
}

/* Logo */
.brand-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1px;
}

.brand-text {
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #ffffff;
}

.brand-green {
  color: #dada03;
}

/* Menu Links */
.nav-link {
  color: #fff !important;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.nav-link.active {
  color: #dada03 !important;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #dada03;
  left: 0;
  bottom: -5px;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #dada03;
  left: 0;
  bottom: -5px;
  transition: 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Book Now Button */
.book-btn {
  background: #111;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  transition: 0.3s ease;
}

.book-btn:hover {
  background: #1a9c5e;
  color: #fff;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .brand-logo {
    height: 35px;
  }

  .brand-text {
    font-size: 12px;
    letter-spacing: 2px;
  }
  .navbar-brand {
    margin: auto;
  }

  .navbar-nav {
    padding-top: 15px;
    gap: 10px;
  }

  .book-btn {
    width: 100%;
    text-align: center;
  }
}
