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

/* Body */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #fff9f4;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #fff;
    padding: 20px;
    border-bottom: 1px solid #ccc;
}

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

.logo {
    height: 80px;
}

.header-text h1 {
    font-size: 2em;
    color: #5c3d1e;
}

.header-text p {
    font-size: 1.1em;
    color: #7a5c3b;
}

/* Navigation */
nav {
    background-color: #000000;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #c59d5f;
}

/* Sections */
section {
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

section:not(:last-of-type)::after {
    content: "";
    display: block;
    margin: 40px auto 0;
    width: 80%;
    border-bottom: 1px solid #ccc;
}

/* Emplacement pour l’histoire */
.histoire-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.histoire-image {
    width: 300px;
    border-radius: 8px;
}

/* Produits */
section#produits {
    background-color: #fef8f3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.produit {
    width: 250px;
    text-align: center;
}

.produit img {
    width: 5cm;
    height: auto;
    margin-bottom: 15px;
    border-radius: 10px;
}

.produit h3 {
    font-size: 1.5em;
    color: #5c3d1e;
    margin-bottom: 5px;
}

.produit p {
    margin: 5px 0;
}

/* Contact */
section#contact {
    background-color: #fff;
}

/* Footer */
footer {
    background-color: #000000;
    color: white;
    padding: 20px 10px;
    font-size: 0.9em;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    height: 60px;
    margin-bottom: 10px;
}

.footer-text p {
    margin: 5px 0;
}

.legal-warning {
    font-size: 0.8em;
    margin-top: 10px;
    color: #cccccc;
}

/* Responsive */
@media (min-width: 768px) {
    .header-container {
        justify-content: flex-start;
    }
    .header-text {
        margin-left: 20px;
    }
    .footer-container {
        flex-direction: row;
        justify-content: center;
    }
    .footer-text {
        margin-left: 20px;
    }
}
