body {
    font-family: 'Poppins', sans-serif;
    background-color: #fffaea;
    margin: 0;
    color: #1a1a1a;
    line-height: 1.6;
}

/* --- HEADER --- */
header {
    background: linear-gradient(135deg, #941818, #5e0202);
    color: white;
    padding: 40px 5%;
    text-align: center;
    border-bottom: 10px solid #d4af37;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #d4af37;
    transition: transform 0.5s;
    object-fit: cover;
    margin-bottom: 10px;
}

.logo:hover { 
    transform: rotate(360deg);
} 

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 20px 0;
}

nav a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

nav a:hover { color: gold; }

/* --- SECTIONS --- */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.menu-section {
    margin-bottom: 80px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #b8860b;
    margin-bottom: 20px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #d4af37;
    margin: 10px auto;
}

/* --- GRILLE FLEXBOX --- */
.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    background: white;
    flex: 1 1 300px;
    max-width: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
    padding-bottom: 15px; /* Espace en bas de la carte */
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card h3 {
    padding: 10px;
    color: #941818; /* Rappel de la couleur du header */
}

.card p {
    margin: 5px 0;
    font-size: 0.95rem;
}

/* --- FOOTER ET BACK TO TOP --- */
footer {
    background: #1a1a1a;
    color: #888;
    padding: 50px;
    text-align: center;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #d4af37;
    color: black;
    padding: 10px 15px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}