/* Menu Page Styles */

.menu-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.text-center {
    text-align: center;
}

.menu-container {
    max-width: 1000px;
    margin: 0 auto;
}

.menu-notes {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(197, 157, 95, 0.05);
    border-radius: 3px;
}

.dietary-note {
    color: var(--gray);
    margin: 0;
}

.menu-category {
    margin-bottom: 80px;
}

/* Menu Section Break - Full Width with Wavy Borders */
.menu-section-break {
    height: 400px;
    margin: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Wave borders for menu section breaks */
.menu-section-break::before {
    content: "";
    display: block;
    width: 100%;
    height: 14px;
    position: absolute;
    left: 0;
    top: -6px;
    background: url('../images/border-wave.svg') top left repeat-x;
    background-position: top;
    z-index: 20;
}

.menu-section-break::after {
    content: "";
    display: block;
    width: 100%;
    height: 14px;
    position: absolute;
    left: 0;
    bottom: -6px;
    background: url('../images/border-wave.svg') top left repeat-x;
    background-position: bottom;
    z-index: 20;
}

@media (max-width: 768px) {
    .menu-section-break {
        height: 250px;
        margin: 60px 0;
    }
}

.category-header {
    text-align: center;
    margin-bottom: 30px;
}

.category-title {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 20px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--accent);
}

.category-subtitle {
    font-style: italic;
    color: var(--light);
    font-size: 18px;
    margin: 0;
}

.category-note {
    text-align: center;
    font-style: italic;
    color: var(--light);
    margin-bottom: 30px;
    font-size: 14px;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    column-gap: 40px;
}

/* Single column for certain categories */
.menu-category.single-column .menu-items {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
}

.menu-item {
    position: relative;
    padding: 30px;
    border: 1px solid var(--borders);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-item:hover {
    border-color: var(--accent);
    box-shadow: 0 5px 20px rgba(197, 157, 95, 0.1);
    transform: translateY(-3px);
}

.item-badge {
    position: absolute;
    top: -14px;
    left: 20px;
    background: white;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(197, 157, 95, 0.2);
}

/* All badge types use the same accent color styling */
.item-badge.signature,
.item-badge.favourite,
.item-badge.recommended,
.item-badge.chefs-kiss,
.item-badge.so-good,
.item-badge.new {
    border-color: var(--accent);
    color: var(--accent);
    background: white;
}

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

.item-name {
    font-size: 20px;
    color: var(--dark);
    margin: 0;
    flex: 1;
}

.item-tags {
    color: var(--accent);
    font-size: 14px;
    font-weight: normal;
}

.vg-icon {
    font-size: 14px;
    margin-left: 8px;
    color: var(--accent);
    display: inline-block;
    vertical-align: middle;
    opacity: 0.9;
}

.item-price,
.item-prices {
    font-size: 18px;
    font-weight: bold;
    color: var(--accent);
    white-space: nowrap;
}

.item-prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.item-prices .item-price {
    font-size: 16px;
}

.price-type {
    font-size: 12px;
    font-weight: normal;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.item-portion {
    font-style: italic;
    color: var(--light);
    margin-bottom: 10px;
    font-size: 14px;
}

.item-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.item-options {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.item-options li {
    padding: 8px 0 8px 20px;
    position: relative;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

.item-options li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.item-note {
    margin-top: 10px;
    font-size: 13px;
    color: var(--light);
    font-style: italic;
}

.menu-footer-note {
    text-align: center;
    max-width: 700px;
    margin: 60px auto 0;
    padding: 40px;
    background: rgba(197, 157, 95, 0.05);
    border-radius: 3px;
}

.menu-footer-note h4 {
    color: var(--accent);
    margin: 20px 0 15px;
}

.menu-footer-note p {
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

/* Menu tabs styling */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--borders);
    color: var(--gray);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.menu-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.menu-tab-pickup {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
    font-weight: 700;
    border-width: 3px;
}

.menu-tab-pickup:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 157, 95, 0.3);
}

/* Responsive: Single column on tablets and mobile */
@media (max-width: 1024px) {
    .menu-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-item {
        padding: 20px;
    }
    
    .item-badge {
        position: static;
        display: inline-block;
        margin-bottom: 15px;
    }
    
    .item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .item-name {
        font-size: 18px;
    }
    
    .item-price,
    .item-prices {
        font-size: 16px;
    }
    
    .item-prices {
        flex-direction: row;
        gap: 15px;
    }
    
    .menu-tabs {
        gap: 10px;
    }
    
    .menu-tab {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Drinks Menu Specific Styles */
.section-title {
    font-size: 24px;
    color: var(--accent);
    margin: 40px 0 20px;
    font-weight: 600;
}

.subsection-title {
    font-size: 18px;
    color: var(--dark);
    margin: 30px 0 15px;
    font-weight: 600;
    font-style: italic;
}

.drinks-items {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.drink-item {
    padding: 20px;
    border: 1px solid var(--borders);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.drink-item:hover {
    border-color: var(--accent);
    box-shadow: 0 3px 15px rgba(197, 157, 95, 0.1);
}

.drink-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.drink-info {
    flex: 1;
}

.drink-name {
    font-size: 18px;
    color: var(--dark);
    margin: 0 0 5px 0;
    font-weight: 600;
}

.drink-origin {
    display: block;
    font-size: 14px;
    color: var(--light);
    font-style: italic;
    margin-bottom: 8px;
}

.drink-description {
    font-size: 14px;
    color: var(--gray);
    margin: 8px 0 0;
    line-height: 1.6;
}

.drink-size {
    font-size: 13px;
    color: var(--light);
    font-style: italic;
}

.drink-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.drink-price {
    font-size: 16px;
    font-weight: bold;
    color: var(--accent);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.drink-price .icon-glass,
.drink-price .icon-bottle {
    opacity: 0.8;
    flex-shrink: 0;
}

.price-label {
    font-size: 12px;
    font-weight: normal;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 5px;
}

.drinks-simple-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 15px;
}

.drinks-simple-list .drink-item {
    border: none;
    padding: 0;
    font-size: 15px;
    color: var(--gray);
}

.drinks-simple-list .drink-item:hover {
    border: none;
    box-shadow: none;
    color: var(--accent);
}

.category-price {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: var(--accent);
    margin: 20px 0;
}

.drink-options {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--borders);
}

.drink-options p {
    font-size: 13px;
    color: var(--light);
    font-style: italic;
    margin: 5px 0;
}

/* Lunch Menu Specific Styles */
.lunch-menu .menu-container {
    max-width: 900px;
}

.lunch-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(197, 157, 95, 0.05) 0%, rgba(197, 157, 95, 0.02) 100%);
    border-radius: 3px;
}

.lunch-price-box {
    display: inline-block;
    margin-bottom: 25px;
}

.lunch-price {
    font-size: 72px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    font-family: "Source Sans Pro", Georgia, serif;
}

.lunch-label {
    font-size: 16px;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 5px;
}

.lunch-description {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 15px;
}

.lunch-note {
    font-size: 14px;
    color: var(--light);
    font-style: italic;
}

.lunch-section {
    margin-bottom: 50px;
}

.lunch-section-title {
    font-size: 28px;
    color: var(--accent);
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.lunch-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--accent);
}

.section-note {
    text-align: center;
    font-style: italic;
    color: var(--light);
    margin-bottom: 25px;
}

.lunch-items-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.lunch-items-list li {
    padding: 15px 20px;
    background: rgba(197, 157, 95, 0.03);
    border-left: 3px solid var(--accent);
    margin-bottom: 12px;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.6;
}

.lunch-items {
    max-width: 600px;
    margin: 0 auto;
}

.lunch-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--borders);
}

.lunch-item:last-child {
    border-bottom: none;
}

.lunch-item .item-name {
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
}

.lunch-item .item-price {
    color: var(--accent);
    font-weight: bold;
    font-size: 16px;
}

.lunch-item .item-note {
    font-size: 14px;
    color: var(--light);
    font-style: italic;
    margin-left: 10px;
}

.lunch-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(197, 157, 95, 0.05);
    border-radius: 3px;
}

.lunch-cta p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 25px;
}

.lunch-cta a:not(.btn-primary) {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.lunch-cta a:not(.btn-primary):hover {
    text-decoration: underline;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent);
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary,
.btn-primary:link,
.btn-primary:visited,
.btn-primary:active {
    color: white !important;
}

.btn-primary:hover {
    background: var(--dark);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive styles for drinks and lunch */
@media (max-width: 768px) {
    .drink-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .drink-pricing {
        align-items: flex-start;
        flex-direction: row;
        gap: 15px;
    }
    
    .lunch-price {
        font-size: 56px;
    }
    
    .lunch-description {
        font-size: 16px;
    }
    
    .lunch-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

