/* Shared CSS for nav, mobile menu, hover, and responsive — replaces the
 * Claude Design `style-hover` attrs and the nav's DCLogic. (Session 113) */

/* Nav links */
.nl-navlink {
  display: none;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #ADA391;
  transition: color 0.18s ease;
}
.nl-navlink:hover { color: #F4EEE2; }
.nl-navlink[aria-current="page"] { color: #F4EEE2; }

/* Gold "Request a demo" pill (desktop) */
.nl-demo-btn {
  display: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0C0A08;
  background: linear-gradient(180deg, #E4C988, #CBA35A);
  padding: 11px 20px;
  border-radius: 2px;
  transition: filter 0.18s ease;
}
.nl-demo-btn:hover { filter: brightness(1.06); }

/* Burger */
.nl-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nl-burger span { display: block; width: 24px; height: 1.5px; background: #F4EEE2; }

/* Mobile menu overlay */
.nl-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #0C0A08;            /* fully opaque — no page content shows through */
  display: none;
  flex-direction: column;
  padding: 26px clamp(20px,5vw,56px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nl-menu.nl-open { display: flex; }
.nl-menu-link {
  font-size: 34px;
  color: #F4EEE2;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(203,163,90,0.12);
  font-family: 'Bodoni Moda', serif;
}
.nl-menu-cta {
  margin-top: 36px;
  text-align: center;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0C0A08;
  background: linear-gradient(180deg, #E4C988, #CBA35A);
  padding: 16px;
  border-radius: 2px;
}

/* Desktop: show inline links, hide burger */
@media (min-width: 860px) {
  .nl-navlink { display: inline-block; }
  .nl-demo-btn { display: inline-block; }
  .nl-burger { display: none; }
}

/* Generic CTA hover for in-page gold buttons (replaces style-hover) */
a[style*="linear-gradient(180deg, #E4C988"] { transition: filter 0.18s ease; }
a[style*="linear-gradient(180deg, #E4C988"]:hover { filter: brightness(1.06); }

/* Footer responsive */
@media (max-width: 720px) {
  .nl-footgrid { grid-template-columns: 1fr !important; }
}
