
/*!* ---------------------- *!*/
/*!*    Menu Section         *!*/
/*!* ---------------------- *!*/
#menuSection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 4rem auto 4rem auto;
    padding: 0 1rem;
}

#menuSection > section {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#menuSection > section:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.12);
}


/*!*    Section Titles      *!*/
.menu-section-title {
    font-size: 1.5rem;
    border-bottom: 2px solid #e1d5c9;
    padding-bottom: 0.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

/*!*         Notes          *!*/
.menu-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #6a4d36;
}

/*!*      Menu List        *!*/
.menu-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.menu-list li {
    padding: 0.3rem 0;
    border-bottom: 1px dotted #ddd;
}
.menu-list li:last-child {
    border-bottom: none;
}



/*!* ---------------------- *!*/
/*!*    Methodical logo     *!*/
/*!* ---------------------- *!*/

/* Proudly Serving Section */
/*#methodicalMenuFigure img {*/
/*    max-width: 200px;*/
/*    margin-top: 1rem;*/
/*}*/

/*#methodicalSection {*/
/*    text-align: center;*/
/*    flex: 0 0 auto;*/
/*}*/

#methodicalMenuFigure img {
    max-width: 140px;
    height: auto;
    display: block;
    margin: 0 auto;
    /*filter: brightness(0) invert(1); !* optional if logo is dark *!*/
}