/* General Styling */
body {
    background-color: #f4e9d5; /* Cream background */
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #3d2b1f;
}

.container {
    width: 90%;
    max-width: 400px;
    background-color: #6d8ba6; /* Muted Blue */
    padding: 15px;
    border: 4px solid #3d2b1f;
    box-shadow: 8px 8px 0px #3d2b1f;
}

/* Header */
.header-box {
    background-color: #d15a41; /* Vintage Red */
    padding: 20px;
    text-align: center;
    border: 3px solid #3d2b1f;
    position: relative;
    margin-bottom: 15px;
}

.status-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    background-color: #f1b24a; /* Yellow */
    padding: 5px 10px;
    border: 2px solid #3d2b1f;
    font-weight: bold;
    font-size: 12px;
}

h1 {
    color: #ffffff;
    margin: 0;
    font-size: 24px;
    letter-spacing: 2px;
}

.subtitle {
    font-style: italic;
    font-size: 13px;
    color: #f4e9d5;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.menu-item {
    background-color: #f1b24a;
    border: 3px solid #3d2b1f;
    padding: 15px 5px;
    font-weight: bold;
    cursor: pointer;
    font-family: inherit;
    transition: 0.2s;
}

.menu-item:active {
    transform: translate(2px, 2px);
    box-shadow: none;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}

/* Pricing Specific Styles */
.pricing-scroll {
    max-height: 80vh; /* Limits height on mobile */
    overflow-y: auto; /* Adds scrollbar if list is long */
    text-align: left; /* Better for reading lists */
}

.category-title {
    text-align: center;
    text-decoration: underline;
    margin-bottom: 20px;
}

.section-header {
    background-color: #3d2b1f;
    color: #f1b24a;
    padding: 5px;
    font-size: 14px;
    text-align: center;
    margin: 15px 0 10px 0;
}

.sub-label {
    font-weight: bold;
    font-size: 12px;
    margin: 10px 0 5px 0;
    color: #d15a41;
    border-bottom: 1px dotted #3d2b1f;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
}

.price-list li span {
    font-weight: bold;
}

.divider {
    border: 0;
    border-top: 2px dashed #3d2b1f;
    margin: 20px 0;
}

/* Custom Scrollbar for a "retro" look */
.pricing-scroll::-webkit-scrollbar {
    width: 8px;
}
.pricing-scroll::-webkit-scrollbar-thumb {
    background: #3d2b1f;
}

.modal-content {
    background-color: #f4e9d5;
    padding: 20px;
    border: 4px solid #3d2b1f;
    width: 80%;
    max-width: 300px;
    text-align: center;
}

.close {
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.sub-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.sub-menu button {
    background-color: #6d8ba6;
    color: white;
    border: 2px solid #3d2b1f;
    padding: 10px;
    font-family: inherit;
}

.footer-bar {
    text-align: center;
    font-size: 10px;
    margin-top: 15px;
    color: #3d2b1f;
    text-transform: uppercase;
}