/* Header styles for Cape May Thrive */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

header,
header a,
header button {
  color: #1e293b; /* text-slate-800 equivalent */
}

.navbar-nav {
  gap: 2.5rem;
}

.navbar-nav .nav-link {
  color: #1e293b !important; /* text-slate-800 equivalent */
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--capeBlue-600) !important;
}

.navbar-nav .nav-link.active {
  font-weight: 600;
  color: var(--capeBlue-700) !important;
}

/* Mobile menu styles */
@media (max-width: 1023px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-button {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
  
  .mobile-menu-button {
    display: none;
  }
}