#menu-placeholder {
  height: 250px;
}

.navbar-wrapper {
  background-image: url('../img/Banniere.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  height: 250px;
  width: 100%;
  position: relative;
}

.navbar-custom {
  background: transparent !important;
  height: 100px;
}

.nav-link-white {
  color: white !important;
  transition: color 0.2s ease-in-out;
}

.nav-link-white:hover {
  color: #333 !important;
}

.nav-item
{
  font-size: xx-large;
  height: 32px;
}

#Logo
{
  height: 150px;
}

.btn-social {
  width: 50px;
  height: 50px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  padding: 0 !important;
  align-content: center;
  background-color: transparent;
}

.btn-social img {
  line-height: 1;
  width: 80%;
  height: 80%;
  margin: 0;
}

.white-filter {
  filter: brightness(0) invert(1);
}

/* Menu de base */
.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  background-color: #333;
}

.menu ul li {
  position: relative;
}

.menu ul li a,
.menu ul li span {
  display: block;
  padding: 10px 15px;
  color: black;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

.menu ul li a:hover,
.menu ul li span:hover {
  background-color: #555;
  border-radius: 5px;
}

.dropdown-content {
  list-style: none;
  font-size: 24px;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #444;
  min-width: 150px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}


/* Affichage au survol */
.dropdown:hover .dropdown-content {
  max-height: 500px; /* assez grand pour contenir tous les liens */
  opacity: 1;
}

/* Liens dans le menu déroulant */
.dropdown-content li a {
  display: block;
  padding: 10px;
  color: white;
  text-decoration: none;
  background-color: #444;
  margin: 2px 0;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

.dropdown-content li a:hover {
  background-color: #666; /* survol */
}
