
article.menu>h1{
    text-align: center;
}

article.menu{
    padding: 10px;
}

article.menu div.menu-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

article.menu div.menu-items section{
    width: 400px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    background-color: var(--gold-lt);
    overflow: hidden;
    text-align: center;
    position: relative;
}

article.menu div.menu-items section img{
    display: block;
    width: 100%;
    object-position: center;
    height: 220px;
    object-fit: cover;
}

article.menu div.menu-items section.drinks img {
    width: 100%;
    margin: 0 auto;
    height: 220px;
    object-fit: cover;
    
    object-position: 50% 35%;
}


.item-info{
    display: flex;
    flex:1;
    flex-direction: column;
    padding: 10px;
    font-size: 1rem;
}
.item-info span {
    margin-top: auto;
}
.item-info h3 {
    margin-bottom: 8px;
}

.item-info p {
    margin-bottom: 12px;
}

section::before {
    position: absolute;
    top: 12px;
    right: 0;
    z-index: 1;

    padding: 6px 12px;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;

    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;

    color: white;
}

section.vegan::before {
    content: "VEGAN";
    background-color: green;
}

section.bestSeller::before {
    content: "BEST SELLER";
    background-color: darkred;
}
