/***********************************/
/* Styles pour le menu du mercredi */
/***********************************/

/* --- CONTENEUR GLOBAL --- */
.gmd-conteneur-menus {
    display: flex;
    justify-content: center;
    gap: 5px;
    /* margin: 20px 0; */
    flex-direction: row;
    flex-wrap: wrap;
}

/* --- CARTE DU MENU --- */
.gmd-carte-menu {
    background-color: rgba(43, 70, 60, 0.85);
    border-radius: 6px;
    padding: 25px 10px;
    width: 100%;
    max-width: 24.25%;
    box-shadow: 5px 5px 25px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 0px;
}

/* --- EN-TÊTE (DATE) --- */
.gmd-groupe-titre {
    text-align: center;
    margin-bottom: 10px;
}

.gmd-titre-jour {
    font-family: "Fraunces", Georgia, serif;
    font-weight: 600;
    color: #FAFAF5;
    font-size: 25px;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 0;
    padding-bottom: 0.2em;
}

.gmd-titre-date {
    font-family: "Fraunces", Georgia, serif;
    font-weight: 300;
    color: #FAFAF5;
    font-size: 17px;
    letter-spacing: 0.1em;
    margin: 0;
}

/* --- GROUPES DE PLATS --- */
.gmd-groupe-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* La ligne séparatrice (remplace les SVG de Figma) */
.gmd-separateur {
    width: 90%;
    height: 1px;
    background-color: #FAFAF5;
    opacity: 0.3;
    border: none;
    margin: 15px 0 15px 0;
}

/* Sous-titres (Entrée, Plat, Dessert) */
.gmd-sous-titre {
    font-family: "Fraunces", Georgia, serif;
    font-weight: 600;
    color: #FAFAF5;
    font-size: 20px;
    letter-spacing: 0.1em;
    margin: 0 0 10px 0;
    padding-bottom: 0px;
}

/* Texte des plats */
.gmd-texte-plat {
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-weight: 300;
    color: #FAFAF5;
    font-size: 15px;
    letter-spacing: 0.03rem;
    line-height: 1.5;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .gmd-carte-menu {
        max-width: 49.5%;
    }
}

@media screen and (max-width: 425px) {
    .gmd-carte-menu {
        max-width: 100%;
    }
}