/* Page créée par Timeo Caggiano / 9 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;
}

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

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

.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: 40px auto;
}

.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;
}

.img-details {
    width: 32vw;
    margin-left: 5vw;
    margin-right: 7vw;
    margin-top: 3vh;
}

article p {
    margin-right: 30px;
}

article h3 {
    margin-bottom: 0px;
    margin-top: 10px;
}

.rating {
    margin-top: 0px;
}

main {
    display: flex;
}

footer {
    background-color: #F7ECDB;
}

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

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

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

iframe {
    width: 100%;
}

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

@media (max-width: 600px) {
    main {
        flex-direction: column;
        justify-content: center;
        margin: 3vw;
    }

    .img-details {
        width: 95vw;
        margin: 0vw;
    }

    .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;
    }
}