/*LE BODY*/

body {
    font-family: "avenir-next-world", sans-serif;
    background: #fff;
    margin: 0;
    padding: 0;
}

h1 {
    font-family: "avenir-next-world", sans-serif;
    font-weight: 800;
    font-style: normal;
}

h2 {
    font-family: "avenir-next-world", sans-serif;
    font-weight: 600;
    font-style: normal;
}

p {
    font-family: "avenir-next-world", sans-serif;
font-weight: 400;
font-style: normal;
}



/*LA BARRE DE NAVIGATION*/
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px 10px 40px;
    background: #fff;
}
.logo img {
    height: 65px;
}
.nav-list {
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
    align-items: center;
}
.nav-item {
    display: inline-block;
    background: #e5edfa;
    border: 1px solid #b3c2d6;
    border-radius: 20px;
    padding: 8px 24px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    color: #222;
    transition: background 0.2s;
    white-space: nowrap;
}
.nav-item:hover {
    color: white;
    background: #54729c;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.search-bar {
    background: #6d6d6d1d;
    border: 1px solid #b3c2d6;
    border-radius: 20px;
    padding: 6px 18px;
    display: flex;
    align-items: center;
}
.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 1rem;
    width: 180px;
}

.recherche {
    display: flex;
    flex-direction: column;
}










/* Responsive */
@media (max-width: 900px) {
    .intro-box {
        flex-direction: column;
        gap: 12px;
        padding: 18px 14px;
    }
    .type-cards {
        flex-direction: column;
        gap: 18px;
    }
}
