* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5efed;
    color: #222;
}



/* HEADER */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 25px 8%;

    background: white;
}

.logo {
    width: 160px;
}

nav a {
    text-decoration: none;

    margin-left: 30px;

    color: #222;

    font-size: 16px;

    transition: 0.3s;
}

nav a:hover {
    color: #75b728;
}



/* HERO */

.hero {
    min-height: 90vh;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 60px;

    padding: 80px 8%;

    flex-wrap: wrap;
}

.hero-text {
    max-width: 550px;
}

.mini-title {
    color: #75b728;

    letter-spacing: 3px;

    font-size: 13px;

    margin-bottom: 20px;
}

.hero h1 {
    font-size: 65px;

    line-height: 1.1;

    margin-bottom: 30px;
}

.hero p {
    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 35px;
}

.btn {
    display: inline-block;

    background: #75b728;

    color: white;

    text-decoration: none;

    padding: 16px 30px;

    border-radius: 50px;

    transition: 0.3s;
}

.btn:hover {
    background: #5d941f;
}

.hero-image img {
    width: 450px;

    border-radius: 30px;
}



/* PANIERS */

.paniers {
    padding: 120px 8%;
}

.section-title {
    text-align: center;

    margin-bottom: 70px;
}

.section-title p {
    color: #75b728;

    letter-spacing: 3px;

    font-size: 13px;

    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 48px;
}

.cards {
    display: flex;

    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;
}

.card {
    background: white;

    width: 320px;

    padding: 40px;

    border-radius: 30px;

    text-align: center;

    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 170px;

    margin-bottom: 25px;
}

.card h3 {
    font-size: 28px;

    margin-bottom: 15px;
}

.card p {
    line-height: 1.7;
}

.featured {
    border: 2px solid #75b728;
}



/* FRESH */

.fresh {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 80px;

    padding: 120px 8%;

    background: white;

    flex-wrap: wrap;
}

.fresh-image img {
    width: 380px;

    border-radius: 30px;
}

.fresh-text {
    max-width: 500px;
}

.fresh-text h2 {
    font-size: 48px;

    margin-bottom: 25px;

    line-height: 1.2;
}

.fresh-text p:last-child {
    font-size: 18px;

    line-height: 1.8;
}



/* VALUES */

.values {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 100px;

    padding: 120px 8%;

    flex-wrap: wrap;
}

.values-text {
    max-width: 500px;
}

.values-text h2 {
    font-size: 48px;

    margin-bottom: 30px;
}

.values-text li {
    font-size: 18px;

    margin-bottom: 18px;
}

.values-image img {
    width: 280px;
}



/* FOOTER */

footer {
    background: white;

    text-align: center;

    padding: 40px;
}

footer img {
    width: 120px;

    margin-bottom: 20px;
}



/* COMMANDE */

.commande {
    min-height: 85vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 80px 20px;
}

.commande h1 {
    font-size: 55px;

    margin-bottom: 40px;
}

form {
    width: 100%;
    max-width: 500px;

    display: flex;
    flex-direction: column;

    gap: 20px;
}

input,
select,
textarea {
    padding: 18px;

    border: none;

    border-radius: 15px;

    font-size: 16px;
}

textarea {
    height: 150px;

    resize: none;
}

button {
    background: #75b728;

    color: white;

    border: none;

    padding: 18px;

    border-radius: 50px;

    font-size: 16px;

    cursor: pointer;

    transition: 0.3s;
}

button:hover {
    background: #5d941f;
}



/* RESPONSIVE */

@media (max-width: 900px) {

    .hero h1,
    .fresh-text h2,
    .values-text h2,
    .section-title h2,
    .commande h1 {
        font-size: 40px;
    }

    nav {
        display: none;
    }

    .hero-image img,
    .fresh-image img {
        width: 100%;
    }

}