body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff; 
    color: #000000;
}

#cafe-header {
    background-color: brown;
    color: #ffffff;
    padding: 1.25rem; 
    text-align: center;
}

.cafe-title {
    margin: 0;
    font-size: 2.5rem;
}

.section-title {
    font-size: 2rem;
    margin: 1.25rem 0; 
    text-align: center;
}

.menu-items {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    padding: 1.25rem; 
    background-color: #532711; 
}

/* Menu Item Styles */

.menu-items .item {
    position: relative; 
    overflow: hidden; 
    width: 23%; 
    height: 150px; 
    margin: 1%; 
    border-radius: 8px; 
}

.menu-items .item img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.menu-items .item h3 {
    position: absolute; 
    bottom: 0; 
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
    color: #ffffff; 
    padding: 0.5rem;
    text-align: center; 
}
