/* ============================================================
   Shared site navbar — single source of truth for the .minimal-nav
   bar used on EVERY page (both design systems: gurey-page.css +
   about-neon.css). Self-contained: values are hardcoded so it does
   NOT depend on either stylesheet's :root variables.

   All rules are scoped under .minimal-nav so a bare .nav-links used
   elsewhere (e.g. 404.html "Quick links") is never affected.
   ============================================================ */

.minimal-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
  pointer-events: none;
}

.minimal-nav > * {
  pointer-events: auto;
}

.minimal-nav .nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.minimal-nav .nav-logo img {
  height: 24px;
  width: auto;
}

.minimal-nav .nav-links {
  display: none;
  gap: 24px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid #2A2A2A;
  padding: 8px 32px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
  .minimal-nav .nav-links {
    display: flex;
  }
}

.minimal-nav .nav-links a {
  color: #9F9FA9;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s;
  padding: 8px 0;
}

.minimal-nav .nav-links a:hover,
.minimal-nav .nav-links a.active {
  color: #FFFFFF;
}

/* Mobile menu toggle */
.minimal-nav .mobile-menu-btn {
  display: flex;
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 28px;
}

@media (min-width: 768px) {
  .minimal-nav .mobile-menu-btn {
    display: none;
  }
}

/* Mobile menu panel (open state) */
@media (max-width: 767px) {
  .minimal-nav .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: absolute;
    top: calc(100% + 8px);
    left: 32px;
    right: 32px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(10, 10, 10, 0.92);
    border: 1px solid #2A2A2A;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: navPanelIn 0.22s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }

  .minimal-nav .nav-links.open a {
    font-size: 15px;
    padding: 12px 14px;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
  }

  .minimal-nav .nav-links.open a:hover,
  .minimal-nav .nav-links.open a.active {
    background: rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
  }
}

@keyframes navPanelIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Nav CTA button — self-contained so it renders identically on every
   page regardless of whether gurey-page.css or about-neon.css owns .btn.
   Matches the blog "Book a Call": white pill, dark text, neon-green hover. */
.minimal-nav .nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.minimal-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 36px;
  padding: 0 16px;
  border-radius: 12px;
  background: #FFFFFF;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.minimal-nav .nav-cta:hover {
  transform: translateY(-2px);
  background: #2FFF00;
  box-shadow: 0 8px 24px rgba(47, 255, 0, 0.3);
}
