/* Navbar container */
.main-navigation-wrapper {
  max-width: 100%;
  padding: 1% 4%;
}
.navbar-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff5e;
  border: 1px solid #ffffff34;
  /* --- CORRECTED LINE --- */
  /*  x-offset | y-offset | blur-radius | color  */
  box-shadow: 0 0 10px #adbae731;
  /* --- END CORRECTION --- */
  padding: 0.5% 3%;
  border-radius: 999px;
  position: relative;
  z-index: 10;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  position: relative; /* add this! */
  overflow: hidden;  /* ensures the shimmer stays inside */
}

.logo img {
  width: 80px;
  padding-left: 5%;
}

.logo::after {
  content: "";
  position: absolute;
  inset: -0.125rem;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.65) 45%,
    transparent 90%
  );
  transform: translateX(-120%);
  pointer-events: none;
  transition: transform 0.6s ease;
  mix-blend-mode: overlay;
}

/* Corrected hover selector */
.logo:hover::after {
  transform: translateX(120%);
}

/* Desktop Nav */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  text-decoration: none;
  color: black;
  font-size: 16px;
}

/* Quote Button */

/* Hamburger button (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: black;
  z-index: 11;
}

/* Mobile Flyout Menu */
.flyout-menu {
  position: fixed;
  top: 0;
  right: -250px;   /* hidden off screen initially */
  width: 250px;
  height: 100%;
  background: white;
  box-shadow: -2px 0 8px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  padding-top: 60px;
  z-index: 1000;
}

.flyout-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flyout-menu ul li {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.flyout-menu ul li a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: black;
}

.flyout-menu ul li a:hover {
  background: linear-gradient(to right, #dbeafe, #60a5fa);
}

/* Close button inside flyout */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: black;
}

/* Active flyout state */
.flyout-menu.active {
  right: 0;
}

/* Responsive */
@media (max-width: 768px) {
.logo img {
    width: 100px;
}
  .nav-menu {
    display: none; /* hide desktop nav/quote button */
  }
  .menu-toggle {
    display: block;
  }
  #navbutton {
    display: none;
  }
  .logo img {
  width: 40px;
  padding-left: 5%;
}
}