/* Page créée par Timeo Caggiano / 8 janvier 2026 */


body {
    color: #322319;
    font-family: "Poppins", sans-serif;
    margin: 0px;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 50px;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.logo {
    height: 13vh;
}

header {
    background-color: #F7ECDB;
    display: flex;
    justify-content: space-between;
    height: 13vh;
}

header div {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.title {
    margin-left: 50px;
    font-size: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.menu {
    justify-content: space-between;
    margin-right: 40px;
}

.menu a {
    border: none;
    background-color: inherit;
    font-size: 25px;
    margin: 10px;
    color: #322319;
}

.img-accueil {
    width: 100%;
    height: 30vh;
    object-fit: cover;
}

.search-box {
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 500px;
    border: 1px solid #322319;
    border-radius: 30px;
    padding: 0px 10px;
    background: white;
    margin: auto;
    margin-bottom: 2vh;
}

.search-box input {
    border: none;
    outline: none;
    flex: 1;
    padding: 8px;
    font-size: 14px;
}

.search-box button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

a,
a:link,
a:visited,
a:hover,
a:active {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 5vh;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    gap: 60px;
    padding: 20px;
}

.card {
    display: flex;
    flex-direction: column;
    width: 250px;
}

.img-container {
    width: 250px;
    height: 20vh;
}

.card-image {
    width: 250px;
    height: 100%;
    object-fit: cover;
    border: 1px solid #322319;
    border-radius: 10px;
    overflow: hidden;
}

.card-text {
    margin: 0;
    width: 250px;
    padding-left: 2px;
}

.description {
    margin: 0;
    width: 250px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-left: 2px;
}

footer {
    background-color: #F7ECDB;
}

.contact-container {
    display: flex;
    justify-content: space-around;
    padding: 40px;
}

footer form {
    display: flex;
    flex-direction: column;
    margin-top: 80px;
}

button {
    cursor: pointer;
    border: none;
    background-color: inherit;
    font-size: 25px;
    margin: 10px;
    color: #322319;
}

.logo-reseau {
    width: 20px;
    height: 20px;
}

iframe {
    width: 100%;
}

@media (max-width: 1140px) {
    .title {
        display: none;
    }
}

@media (min-width: 1600px) {
    .card {
        width: 300px;
    }

    .img-container {
        width: 300px;
    }

    .card-image {
        width: 300px;
    }

    .card-text {
        width: 300px;
    }

    .description {
        width: 300px;
    }
}

@media (max-width: 600px) {
    .menu a {
        font-size: 20px;
    }

    .menu {
        margin-right: 0px;
    }

    header {
        justify-content: center;
    }

    .logo {
        display: none;
    }

    footer div {
        flex-direction: column;
    }

    footer form {
        margin-top: 10px;
    }

    .card,
    .card-image,
    .card-text,
    .description {
        width: 300px;
    }
}