/* ---------------------------- Base CSS ---------------------------- */

/* Import de la police Poppins & Pacifico*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

/* Réinitialisation des styles par défaut pour tous les éléments */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Poppins", sans-serif;
}

/* Navbar */

.custom-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid black;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.custom-navbar a{
    text-decoration: none;
}

.navbar-nav .custom-nav-link.active {
    font-weight: bold;
    color: black !important;
}

/* Footer */

.custom-footer {
    border-top: 1px solid #000;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.15);
    z-index: 1020;
}

/* Search bar */

#searchResults {
    max-height: 200px;
    overflow-y: auto;
    top: 100%;
    left: 0;
    right: 0;
}

#searchResults li {
    cursor: pointer;
}

#searchResults li:hover {
    background-color: #f0f0f0;
}

#searchInput {
    width: 90%;
}

