Galerie d'Images
.dropdown {
display: inline-block;
position: relative;
}
.dropbtn {
color: #fff;
background: none;
border: none;
font-weight: bold;
font-size: 1rem;
cursor: pointer;
text-decoration: none;
padding: 0;
margin: 0 1rem;
}
.dropdown-content {
display: none;
position: absolute;
background: #005baa;
min-width: 180px;
box-shadow: 0 8px 16px rgba(0,0,0,0.10);
border-radius: 0 0 8px 8px;
top: 100%;
left: 0;
z-index: 100;
}
.dropdown-content a {
color: #fff;
padding: 1rem 1.2rem;
text-decoration: none;
display: block;
font-weight: normal;
border-bottom: 1px solid #0072ce;
transition: background 0.2s;
}
.dropdown-content a:last-child {
border-bottom: none;
}
.dropdown-content a:hover {
background: #0072ce;
color: #ffd700;
}
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
display: block;
}
/* Pour garder l'alignement des liens */
nav > a, nav > .dropdown {
vertical-align: middle;
}