/*##################### SLT DEV #######################
###                                                 ###
###            AUTHOR : SomethingLikeThis           ###
###             CC: https://slt-dev.ovh             ###
###        DISCLAIMER : PRIVATE SERVER SCRIPT       ###
###                                                 ###
####################### SLT DEV #####################*/
header {
    background-color: rgba(15, 15, 15, 0.65);
    backdrop-filter: blur(2px); /* Applique le flou uniquement à l'arrière-plan */
    width: 100vw;
    height: 7vh;
    position: fixed; /* Nécessaire pour positionner les éléments internes */
    display: flex;
    align-items: center; /* Centre verticalement les éléments */
    justify-content: center; /* Sépare les éléments à gauche et à droite */
    padding: 0 20px;
    z-index: 1000; /* Assure que le header est au-dessus des autres éléments */
}

header * {
    position: relative; /* Les éléments internes ne sont pas affectés par le flou */
    z-index: 1; /* Assure que les éléments sont au-dessus du backdrop-filter */
}

header img {
    margin-left: 1.5%;
    max-height: 90%;
    height: 100%; /* L'image occupe toute la hauteur du header */
    max-height: 50px; /* Limite la hauteur maximale de l'image */
    object-fit: contain; /* Maintient les proportions de l'image */
}

nav {
    width: 95vw; /* Prend toute la largeur disponible */
    display: flex;
    justify-content: space-between; /* Sépare les éléments à gauche et à droite */
    align-items: center;
}

.nav-right {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    margin-left: auto; /* Pousse .nav-right à l'extrême droite */
}

.nav-right li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9em;
    transition: color 0.3s;
}

.nav-right li a:hover {
    color: #c0c0c0;
}

.dropdown {
    position: relative;
}

#catalogue-btn {
    background: #232323;
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, color 0.2s;
}

#catalogue-btn:hover, #catalogue-btn:focus {
    background: #ffffff;
    color: #232323;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 5.6vh;
    right: -0.6vw;
    background-color: rgba(15, 15, 15, 0.65);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    border-radius: 0;
    padding: 32px 40px 32px 40px;
    min-width: 700px;
    z-index: 1001;
    gap: 60px;
    animation: fadeIn 0.2s;
    border-bottom: 2px solid #18191b;
}

.dropdown-menu.show {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px);}
    to { opacity: 1; transform: translateY(0);}
}

.dropdown-column {
    min-width: 150px;
}

.dropdown-column h4 {
    color: #bdbdbd;
    margin-bottom: 18px;
    font-size: 0.95em;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    padding: 0;
}

.dropdown-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-column ul li {
    margin-bottom: 12px;
}

.dropdown-column ul li:last-child {
    margin-bottom: 0;
}

.dropdown-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    display: inline-block;
}

.dropdown-column ul li a:hover {
    color: #c0c0c0;
    text-decoration: none;
}

.dropdown-column ul li a:active {
    color: #c0c0c0;
}