/* --- Global Styles & Colors --- */
:root {
    --color-dark-primary: black; /* Deep Dark Background */
    --color-dark-secondary: #1e1e1e; /* Card Background */
    --color-golden: #FFD700; /* Pure Gold Accent */
    --color-text-light: #f5f5f5; /* Off-White for Text */
    --color-border-subtle: #333333; /* Dark Border/Separator */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-dark-primary);
    color: var(--color-text-light);
    line-height: 1.6;
}

/* --- Header & Footer --- */
.menu-header, .menu-footer {
    text-align: center;
    padding: 20px;
    background-color: var(--color-dark-secondary);
    border-bottom: 2px solid var(--color-golden);
}

.menu-header h1 {
    color: var(--color-golden);
    font-size: 2.5em;
    letter-spacing: 3px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.tagline {
    font-style: italic;
    color: #aaaaaa;
    margin-top: 5px;
    font-size: 0.9em;
}

.menu-footer p {
    font-size: 0.75em;
    color: #888888;
    padding: 10px;
}

/* --- Main Menu Container & Layout --- */
.menu-container {
    padding: 150px 0; /* Add top/bottom padding, but 0 left/right to allow full width slider */
}

.menu-category {
    margin-bottom: 50px;
    padding: 0 20px; /* Add horizontal padding to category titles */
}

.category-title {
    text-align: center;
    color: var(--color-golden);
    font-size: 2em;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px double var(--color-golden);
    text-transform: uppercase;
    letter-spacing: 1px;
}

hr {
    border: none;
    height: 1px;
    background-color: var(--color-border-subtle);
    margin: 40px 20px; /* Keep separator contained */
}

/* --- SWIPING/HORIZONTAL SCROLL IMPLEMENTATION --- */
.menu-slider {
    overflow-x: auto; /* Enables horizontal scrolling */
    padding-bottom: 20px; /* Space for the scroll bar */
    -webkit-overflow-scrolling: touch; /* Smoother scrolling on iOS */
    white-space: nowrap; /* Prevent items from wrapping to the next line */
}

/* Customize Scrollbar for dark theme (Webkit) */
.menu-slider::-webkit-scrollbar {
    height: 8px;
}

.menu-slider::-webkit-scrollbar-thumb {
    background: var(--color-golden);
    border-radius: 4px;
}

.menu-slider::-webkit-scrollbar-track {
    background: var(--color-dark-secondary);
}

.menu-grid {
    display: inline-flex; /* Use inline-flex for horizontal layout */
    gap: 30px;
    padding: 0 20px; /* Padding for the ends of the slider */
}

/* Ensure cards maintain their size in the inline-flex layout */
.menu-item-card {
    min-width: 300px; /* Fixed width for the card (adjust as needed) */
    max-width: 300px;
    flex-shrink: 0; /* Prevents cards from shrinking */
    
    /* Card Styling */
    background-color: var(--color-dark-secondary);
    border: 1px solid var(--color-border-subtle);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

/* --- Image Circle Styling --- */
.item-image-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--color-dark-primary);
    /* border: 5px double var(--color-golden);  */
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Item Details --- */
.item-details {
    text-align: center;
    width: 100%;
}

.item-name {
    color: var(--color-golden);
    font-size: 1.4em;
    margin-bottom: 10px;
    border-bottom: 1px dashed var(--color-border-subtle);
    padding-bottom: 5px;
}

.item-description {
    font-size: 0.9em;
    color: #b0b0b0;
    margin-bottom: 10px;
}

.price-list p {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    font-size: 1.05em;
}

.price-list .price-tag {
    color: var(--color-golden);
    font-weight: bold;
    font-size: 1.1em;
}

/* Style for single price items (e.g., Zinger Plate) */
.price-list.single-price p {
    justify-content: center;
    font-size: 1.2em;
}