/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #fff8f0;
    color: #333;
}

/* En-tête */
header {
    background-color: #d2691e;
    color: white;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    margin-top: 10px;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Section Hero */
.hero {
    background-image: url('boulanger2.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
    color: white;
    background-color: rgba(0,0,0,0.5);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
}

/* Produits */
.produits {
    padding: 50px 20px;
    text-align: center;
}

.produit-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.produit {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px;
    width: 250px;
}

.produit img {
    width: 100%;
    border-radius: 8px;
}

.produit h3 {
    margin: 10px 0 5px;
    color: #d2691e;
}

.produit p {
    font-size: 0.9rem;
    color: #555;
}

/* Pied de page */
footer {
    background-color: #d2691e;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .produit-list {
        flex-direction: column;
        align-items: center;
    }

    .produit {
        width: 90%;
        max-width: 400px;
    }
}

/* Responsive - Très petits écrans (téléphones) */
@media (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }

    nav ul li a {
        font-size: 0.95rem;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .produits h2 {
        font-size: 1.4rem;
    }

    footer {
        font-size: 0.9rem;
    }
}
