/* =============================================
   Shared Nav & Footer — Be Exceptional
   Loaded by /components/inject.js on every page
   ============================================= */

nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 20px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(3, 5, 8, 0.9), transparent);
  backdrop-filter: blur(5px);
}
.logo img {
  height: 32px;
  filter: brightness(0) invert(1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.nav-links a:hover { opacity: 1; }

footer {
  padding: 80px 5vw 40px;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 20;
}
.footer-logo {
  width: 200px;
  margin-bottom: 50px;
  filter: brightness(0) invert(1);
}
.footer-links {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: #fff; }
.copyright {
  color: #444;
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
}
