body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-image: url('Photos/SiteWeb/index.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    color: #ff6600;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.4);
}

p {
    font-size: 16px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.navbar-desktop {
    background-color: #030303;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: 0px 8px 16px 0px rgb(0, 81, 255);
    z-index: 1000;
}

.navbar-desktop a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 10px;
    display: inline-block;
}

.navbar-desktop a:hover {
    background-color: #0019fc;
}


/* Styles spécifiques pour la boîte de dialogue des filtres mobiles */
.dropdown-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -110%);
    display: none;
    background-color: #f9f9f9;
    min-width: 160px;
    max-height: 31vh;
    overflow-y: auto;
    box-shadow: 0px 8px 16px 0px rgb(0, 81, 255);
    z-index: 1;
}

/* Autres styles pour la navigation et les éléments de la page */
.dropdown-mobile {
    position: fixed;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dropdown-content label,
.dropdown-content select,
.dropdown-content button {
    display: block;
    margin: 10px auto;
}

.dropdown-mobile button.dropbtn {
    background-color: #ff5100;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.dropdown-mobile button.dropbtn:hover {
    background-color: #ff8200;
}