/* MENU PAGE  */
.menu-section {
    padding: 3rem 2rem;
    background-color: #111;
    color: #fff;
}
.menu-section:not(:last-child) {
    border-bottom: 1px solid #222;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}


.menu-title {
    color: #FFD700;
    text-align: center;
    font-size: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.menu-section {
    border-top: 1px solid #222;
}



.section-title {
    color: #FFD700;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.section-title span {
    display: block;
    color: #ccc;
    font-size: 1rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 1.5rem;
}

.menu-item {
    background: #000;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    background-color: #1a1a1a;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}


.menu-item h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.menu-item .price {
    color: #FFD700;
    font-weight: 700;
}

.description {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 0.5rem;
}



/* Responsive layout */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-item h3 {
        font-size: 1.2rem;
    }

    .menu-item .price {
        float: none;
        display: block;
        margin-top: 0.2rem;
    }
}

