/* ==============================================================
   1 STOP WINGS - BRAND COMPLIANT HIGH-DENSITY MENU
   REVISION: Footer Centering & SVG Logo Upscaled (150px)
   FILE LOCATION: /1stopwings-site/css/menu-style.css
   ============================================================== */

:root {
    /* OFFICIAL BRAND PALETTE */
    --wing-blue: #1E2D5B; 
    --wing-red:  #CE2B29; 
    --border-light: #dddddd;
    --font-heading: 'Impact', sans-serif;
}

/* Page Wrapper */
.menu-page-wrapper {
    padding: 30px;
    max-width: 1100px; 
    margin: 0 auto;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
}

/* Header Section */
.menu-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 4px solid var(--wing-blue); 
    padding-bottom: 15px;
}

.menu-header h1 {
    font-family: var(--font-heading);
    font-size: 5.5rem; 
    margin: 0;
    color: var(--wing-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-details address {
    font-style: normal;
    font-size: 1.1rem;
    color: var(--wing-blue);
    margin: 10px 0;
}

.header-hours {
    font-weight: bold;
    font-size: 1rem;
    color: #444; 
}

.header-hours .days {
    color: var(--wing-red) !important;
}

/* COLUMN SYSTEM (Masonry Flow) */
.menu-grid {
    display: block; 
    column-count: 1;
    column-gap: 50px;
}

@media (min-width: 1024px) {
    .menu-grid {
        column-count: 2;
    }
}

.menu-column {
    display: inline-block;
    width: 100%;
    break-inside: avoid;
    margin-bottom: 40px;
}

/* Section Headings */
.menu-column h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 5px;
}

.blue-text { color: var(--wing-blue) !important; }
.red-text { color: var(--wing-red) !important; }

/* MENU ITEM LOGIC */
.menu-item {
    margin-bottom: 18px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
}

.item-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    text-transform: uppercase;
    color: #1a1a1a;
}

.item-name.soup-highlight {
    color: #000000;
}

.item-price {
    font-family: var(--font-heading);
    color: var(--wing-red); 
    font-size: 1.15rem;
}

.item-desc {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #555;
    margin: 4px 0;
}

.item-pricing {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-top: 4px;
}

.extra-info {
    font-size: 0.75rem;
    font-style: italic;
    color: #888;
}

/* Flavors Box */
.flavor-list {
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #eee;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 15px 0;
}

.warning-text {
    color: var(--wing-red);
    font-weight: bold;
}

/* FOOTER - High-Contrast Precision Stamp */
.menu-footer {
    margin-top: 50px;
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}

.footer-logo {
    height: 150px; /* Increased by 50% from 100px */
    width: auto;
    display: block;
    margin-bottom: 20px;
}

.menu-footer p {
    margin-bottom: 25px;
    color: #666;
}

.back-link {
    display: inline-block;
    color: var(--wing-blue);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-family: var(--font-heading);
    border: 2px solid var(--wing-blue);
    padding: 12px 24px;
    transition: all 0.2s ease-in-out;
}

.back-link:hover {
    background-color: var(--wing-blue);
    color: #ffffff;
}

/* MOBILE FIXES */
@media (max-width: 1023px) {
    .menu-header h1 { font-size: 3.5rem; }
    .header-hours .divider { display: none; }
    .header-hours .days { display: block; margin-top: 5px; }
}
