/* ========================================
   MENU STYLES - NEWSPAPER DESIGN
   ======================================== */

/* Section Variables and Base Styles */
:root {
    --section-max-width: 1200px;
    --section-padding: 6rem 2rem;
    --section-gap: 6rem;
}

.container {
    max-width: var(--section-max-width);
    margin: 0 auto;
    padding: var(--section-padding);
    background-color: transparent;
}

/* Menu Header Styles */
.menu-header {
    text-align: center;
    margin-bottom: 5rem;
    color: var(--primary-text-color);
    padding: 0 2rem 3rem;
    position: relative;
}

.menu-header .subheading {
    color: var(--accent-color);
    margin-bottom: 1.25rem;
    font-family: var(--font-family-custom);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.875rem;
}

.menu-header h1 {
    color: var(--primary-text-color);
    font-family: var(--font-family-custom);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    margin-bottom: 5rem;
    position: relative;
    text-align: center;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.menu-header h1::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: var(--accent-color);
}

.menu-header .location {
    font-style: normal;
    margin-bottom: 0;
    color: var(--secondary-text-color);
    font-size: 0.95rem;
    font-family: var(--font-family-custom);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.welcome-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--secondary-text-color);
    font-family: var(--font-family-custom);
    font-weight: normal;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.dietary-note {
    font-style: italic;
    color: var(--secondary-text-color);
    font-size: 0.9rem;
    font-family: var(--font-family-custom);
    margin-bottom: 3rem;
    text-align: center;
}

/* Menu Section Styles */
.menu-section {
    margin-bottom: 4rem;
    padding: 2rem;
    border: none;
    border-radius: 0;
    background-color: transparent;
    position: relative;
    overflow: visible;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(6, 148, 59, 0.1);
    padding-bottom: 3rem;
}

.menu-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-section h2 {
    color: var(--primary-text-color);
    font-family: var(--font-family-custom);
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
    margin-bottom: 2rem;
    position: relative;
    text-align: left;
    font-weight: normal;
    line-height: 1.3;
    border-bottom: none;
    padding-bottom: 0;
}

.menu-section h2::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
}

.menu-description {
    font-style: italic;
    color: var(--secondary-text-color);
    margin-bottom: 2rem;
    font-family: var(--font-family-custom);
    line-height: 1.6;
    font-size: 1rem;
}

/* Menu Item Styles */
.menu-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    align-items: baseline;
    padding: 0.75rem 1rem;
    position: relative;
    border-bottom: 1px dotted rgba(6, 148, 59, 0.2);
    transition: all var(--transition-speed) ease;
}

.menu-item:hover {
    transform: translateX(4px);
}

.menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.menu-item-name {
    flex: 1;
    padding-right: 1rem;
    color: var(--primary-text-color);
    font-family: var(--font-family-custom);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
}

.menu-item-name::before {
    content: '•';
    color: var(--accent-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

.menu-item-price {
    color: var(--accent-color);
    font-weight: 600;
    white-space: nowrap;
    font-family: var(--font-family-custom);
    font-size: 1rem;
}

/* Menu Addon Styles */
.menu-addon {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    align-items: baseline;
    padding: 0.75rem 1.25rem;
    margin-left: 0;
    margin-top: 2rem;
    position: relative;
    font-size: 0.9rem;
    background-color: rgba(6, 148, 59, 0.05);
    border: 1px dashed rgba(6, 148, 59, 0.25);
    border-radius: 4px;
    transition: all var(--transition-speed) ease;
}

.menu-addon:first-of-type {
    margin-top: 2rem;
    padding-top: 0.75rem;
}

.menu-addon:hover {
    background-color: rgba(6, 148, 59, 0.08);
    border-color: var(--accent-color);
    border-style: solid;
}

.menu-addon:last-child {
    margin-bottom: 0;
}

.menu-addon-name {
    flex: 1;
    padding-right: 1rem;
    color: var(--secondary-text-color);
    font-family: var(--font-family-custom);
    font-weight: 500;
    font-style: italic;
    position: relative;
}

.menu-addon-name::before {
    content: '+';
    color: var(--accent-color);
    margin-right: 0.5rem;
    font-weight: bold;
    font-style: normal;
    font-size: 1rem;
}

.menu-addon-price {
    color: var(--accent-color);
    font-weight: 600;
    white-space: nowrap;
    font-family: var(--font-family-custom);
    font-size: 0.9rem;
}

.note {
    color: var(--secondary-text-color);
    font-size: 0.85rem;
    font-style: italic;
    font-family: var(--font-family-custom);
    margin-top: 1rem;
    padding-left: 1.5rem;
}

/* Navigation Menu Styles */
.menu-nav {
    position: sticky;
    top: 120px;
    z-index: 1000;
    background-color: var(--secondary-bg-color);
    padding: 1.5rem;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(6, 148, 59, 0.1);
    border: 1px solid rgba(6, 148, 59, 0.1);
    width: fit-content;
    float: left;
    margin-left: -200px;
}

.menu-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-nav li {
    margin: 0;
}

.menu-nav a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-text-color);
    transition: color var(--transition-speed);
    gap: 0.75rem;
    padding: 0.25rem 0;
}

.menu-nav .dot {
    width: 6px;
    height: 6px;
    background: var(--border-color);
    border-radius: 50%;
    transition: background var(--transition-speed);
    flex-shrink: 0;
}

.menu-nav a:hover .dot,
.menu-nav a.active .dot {
    background: var(--accent-color);
}

.menu-nav .section-name {
    font-size: 0.9rem;
    font-family: var(--font-family-custom);
    color: var(--secondary-text-color);
    transition: color var(--transition-speed);
    font-weight: normal;
}

.menu-nav a:hover .section-name,
.menu-nav a.active .section-name {
    color: var(--accent-color);
}

/* Contact Info Override */
.contact-info {
    background: transparent;
    padding: 0;
    border-radius: 0;
    position: static;
    border: none;
    box-shadow: none;
    display: block;
    flex-direction: unset;
    justify-content: unset;
    margin-bottom: 2rem;
    color: var(--secondary-text-color);
    font-family: var(--font-family-custom);
    font-size: 1rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991px) {
    :root {
        --section-padding: 4rem 1.5rem;
        --section-gap: 4rem;
    }
    
    .menu-nav {
        display: none;
    }
    
    .container {
        padding: var(--section-padding);
    }
    
    .menu-header {
        padding: 0 1rem 2rem;
        margin-bottom: 2rem;
    }
    
    .menu-header h1 {
        font-size: clamp(2rem, 5vw, 2.5rem);
        margin-bottom: 3rem;
    }
    
    .menu-header h1::after {
        bottom: -1.5rem;
    }
    
    .menu-section {
        margin-bottom: 2.5rem;
        padding: 1.5rem;
        padding-bottom: 2.5rem;
    }
    
    .menu-section h2 {
        font-size: clamp(1.35rem, 3.5vw, 1.625rem);
        margin-bottom: 1.5rem;
    }
    
    .menu-item {
        padding: 0.5rem 0.75rem;
    }
    
    .menu-addon {
        padding: 0.6rem 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 1rem;
    }
    
    .container {
        padding: var(--section-padding);
    }
    
    .menu-header {
        padding: 0 0.5rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .menu-header h1 {
        font-size: clamp(1.75rem, 6vw, 2rem);
        margin-bottom: 3rem;
    }
    
    .menu-header h1::after {
        bottom: -1.5rem;
    }
    
    .menu-header .subheading {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .menu-header .location {
        font-size: 0.875rem;
    }
    
    .menu-section {
        padding: 1rem;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
    
    .menu-section h2 {
        font-size: clamp(1.25rem, 4.5vw, 1.5rem);
        margin-bottom: 1.25rem;
    }
    
    .menu-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .menu-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
        padding: 0.5rem 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .menu-item-name {
        padding-right: 0.75rem;
        font-size: 0.95rem;
        flex: 1;
    }
    
    .menu-item-price {
        font-size: 0.95rem;
        flex-shrink: 0;
    }
    
    .menu-addon {
        padding: 0.5rem 0.875rem;
        margin-left: 0;
        margin-top: 1.25rem;
        font-size: 0.875rem;
    }
    
    .note {
        padding-left: 0.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 2rem 0.875rem;
    }
    
    .container {
        padding: var(--section-padding);
    }
    
    .menu-header {
        padding: 0 0.25rem 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .menu-header h1 {
        font-size: clamp(1.5rem, 7vw, 1.75rem);
        margin-bottom: 2.5rem;
    }
    
    .menu-header h1::after {
        bottom: -1.25rem;
    }
    
    .menu-section {
        padding: 0.75rem 0.5rem;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .menu-section h2 {
        font-size: clamp(1.15rem, 5vw, 1.35rem);
    }
    
    .menu-item {
        padding: 0.5rem 0.25rem;
        flex-direction: row;
    }
    
    .menu-item-name {
        font-size: 0.9rem;
        padding-right: 0.5rem;
    }
    
    .menu-item-price {
        font-size: 0.9rem;
    }
    
    .menu-addon {
        padding: 0.5rem 0.75rem;
        margin-top: 1rem;
    }
}