/* ============================================
   nav-projet.css — Navigation spécifique aux pages projet
   ============================================ */

nav.nav-projet {
  position: sticky;
  top: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 4rem;
  background: rgba(245,240,232,0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #c9bfa8;
  font-family: 'Cinzel', serif;
}

nav.nav-projet .nav-logo {
  font-size: .82rem;
  letter-spacing: .25em;
  color: #3a5c3a;
  text-decoration: none;
  text-transform: uppercase;
}

nav.nav-projet .nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

nav.nav-projet .nav-links a {
  font-size: .68rem;
  letter-spacing: .18em;
  color: #4d7a4d;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .3s;
}

nav.nav-projet .nav-links a:hover,
nav.nav-projet .nav-links a.active {
  color: #2d472d;
}
