/* Navbar */

#mainNavbar {
  transition: top 0.6s ease;
}

/* When navbar becomes sticky (fixed to top) */
.sticky-navbar {
  position: fixed;
  top: 0;
  left: 0; /* Align to the left edge */
  z-index: 1000; /* Ensure it stays above other content */    
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 50px; /* Adjust logo size */
}


.social-icons a {
  color: black;
  margin-right: 10px;
  font-size: 18px;
  text-decoration: none;
}
.nav-link {
  color: var(--main-Deep-Cove) !important;
  font-weight: 500;
  font-size: 0.8888rem;
}
.nav-link:hover {
  color: var(--main-Cerulean-Blue) !important; /* Bootstrap primary blue */
}
.dropdown-menu {
  border: none;
}