/* --- Global Layout --- */
.page-offset {
    padding: 0 5%; /* Adds padding to the entire page from screen edges */
    background-color: #000;
}

/* --- Centering Headers --- */
.menu-main-header {
    text-align: center;
    padding: 60px 0;
}

.menu-main-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0 auto;
}

.category-title {
    font-family: 'Cinzel', serif;
    text-align: center; /* Fixes the extreme left alignment */
    font-size: 2rem;
    color: #ffffff;
    margin: 60px auto 40px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    width: 100%;
}

/* --- Alternating Row Logic --- */
.menu-split-row {
    display: flex;
    align-items: stretch; /* This makes the image and text column equal height */
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
    width: 100%;
}

.menu-split-row.reverse {
    flex-direction: row-reverse;
}

/* --- Text Column Styling --- */
.menu-text-col {
    flex: 1;
    padding: 20px 40px; /* Internal padding to keep text away from the image/edge */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sub-header {
    font-family: 'Cinzel', serif;
    color: #D4AF37;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 10px;
}

/* --- Item & Price Alignment --- */
.item-list {
    list-style: none;
    padding: 0;
}

.item-list li {
    display: flex;
    justify-content: space-between; /* Pushes name to left, price to right */
    align-items: center;
    font-family: 'Poppins', sans-serif;
    color: #e0e0e0;
    padding: 10px 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
}

.price {
    color: #D4AF37;
    font-weight: 500;
    margin-left: 20px;
}

/* --- Image Column Styling --- */
.menu-img-col {
    flex: 1;
    display: flex;
}

.menu-img-col img {
    width: 100%;
    height: 100%; /* Matches the height of the text column */
    object-fit: cover; /* Prevents stretching */
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 8px;
}

/* --- Mobile Fix --- */
@media (max-width: 768px) {
    .menu-split-row, .menu-split-row.reverse {
        flex-direction: column;
        gap: 20px;
    }
    .menu-text-col {
        padding: 10px 0;
    }
    .menu-img-col img {
        height: 250px; /* Fixed height for mobile only */
    }
}`