@import url('https://fonts.googleapis.com/css2?family=Saira+Extra+Condensed:wght@400;900&display=swap');

.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #202020;
}

.nav-custom {
  font-family: 'Saira Extra Condensed', sans-serif;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content : center;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #202020;
}

.nav-item-custom {
  position: relative;
  margin-right: 30px;
}

.nav-link-custom {
  text-decoration: none;
  display: block;
  color: #fff;
  padding: 12px;
  background-color: #202020;
}

.sub-nav-custom {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 1;
  text-align: center;
  top: 100%;

  /* Pour centrer le texte sous sont parent */
  left: 50%; 
  transform: translateX(-50%);
  background-color: #202020;
  border: 1px solid #202020; /* Ajout de la bordure */
}

.sub-nav-custom li {
  width: 100%;
  text-decoration: none;
}

.nav-item-custom:hover .sub-nav-custom {
  display: block;
}

.sub-nav-custom a {
  color: #fff;
  display: block;
  padding: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.sub-nav-custom a:hover {
  text-decoration: none;
  text-align: center;
  color: #9e9e9e;
}