body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #FFDEFA;
    color: #222;
}

header {
    background-color: #D8388F;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: white;
}

header h1 a {
    color: white;
    text-decoration: none;
}

nav a {
    color: white;
    margin-left: 1rem;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 5rem 2rem;
    background-size: cover;
    color: white;
    font-size: 1.5rem;
}

footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 1rem;
}

.formulaire {
    max-width: 400px;
    margin: 3rem auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
}

.formulaire h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.hero {
    color: black;
}

.formulaire input, .formulaire button {
    width: 100%;
    padding: 0.8rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid lightgrey;
    border-radius: 5px;
    box-sizing: border-box;
}


.formulaire label {
    font-size: 1rem;
    margin-top: 1rem;
    color: #222;
    font-family: 'Georgia', serif;
}


.formulaire button {
    width: 100%;
    padding: 0.8rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid lightgrey;
    border-radius: 5px;
    box-sizing: border-box;

    font-size: 1rem;
    font-family: 'Georgia', serif;
    color: #222;

    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.formulaire button:hover {
    background-color: #aaa;
}

.formulaire p a {
    text-decoration: none;
}

.produits .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    padding: 2rem;
}

.carte {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px #ddd;
    text-align: center;
    padding: 1rem;
}

.carte img {
    max-width: 100%;
    height: auto;
    border-bottom: 1px solid #eee;
}

.carte .prix {
    color: black;
    font-weight: bold;
    margin-top: 0.5rem;
}
