/* ============================================================
   CSS – Système de menus pour les restaurants
   ------------------------------------------------------------
   Compatible shortcodes :
   - [menu]
   - [menu_section]
   ------------------------------------------------------------
   Design : palette verte (047857), typographie sobre, blocs aérés
   ============================================================ */


/* ======== Structure globale du menu ======== */
.menu-resto {
    margin: 40px 0;
    padding: 25px 20px;
    border: 2px solid #047857;
    border-radius: 12px;
    background: #f0fdf4; /* vert très pale */
    box-shadow: 0 3px 8px rgba(4,120,87,0.1);
}

/* Titre du menu */
.menu-resto-titre {
    margin: 0 0 10px 0;
    font-size: 1.6em;
    font-weight: 700;
    color: #047857;
    letter-spacing: -0.02em;
    text-align: left;
}

/* Période */
.menu-resto-periode {
    margin: 0 0 25px 0;
    font-size: 1em;
    font-weight: 600;
    color: #065f46;
    opacity: .85;
}


/* ======== Sections (Entrées, Plats, Desserts…) ======== */

.menu-section {
    padding: 20px 0;
    border-bottom: 1px solid #cce5d6;
}

.menu-section:last-child {
    border-bottom: none;
}

/* Header : icône + texte */
.menu-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

/* Icône (🥗, 🍽️, 🍰…) */
.menu-section-icon {
    font-size: 1.4em;
    line-height: 1;
}

/* Titre de la section */
.menu-section-title {
    font-size: 1.25em;
    font-weight: 700;
    color: #047857;
    letter-spacing: -0.01em;
}

/* Contenu de la section */
.menu-section-contenu {
    padding-left: 8px;
    line-height: 1.55;
    color: #333;
}

/* Style des listes */
.menu-section-contenu ul {
    margin: 0;
    padding-left: 18px;
    list-style: disc;
}

.menu-section-contenu li {
    margin-bottom: 5px;
}

/* Style des paragraphes internes */
.menu-section-contenu p {
    margin: 6px 0;
}


/* ======== Responsive ======== */

@media (max-width: 768px) {

    .menu-resto {
        padding: 20px 16px;
    }

    .menu-resto-titre {
        font-size: 1.4em;
        text-align: center;
    }

    .menu-resto-periode {
        text-align: center;
        margin-bottom: 20px;
    }

    .menu-section-header {
        justify-content: center;
        text-align: center;
    }

    .menu-section-contenu {
        padding-left: 0;
    }
}
