/* ===== Lunch Menu Page Styles ===== */

/* Lunch Page Header */
.lunch-page-header {
    background: linear-gradient(135deg, var(--background-gradient-start) 0%, var(--background-gradient-end) 100%);
    padding: 10rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lunch-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: url('../images/pattern-bg.png') repeat;*/
    background: url('../images/OurMenu.jpg') ;
    opacity: 0.3;
    z-index: 0;
}

.lunch-header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lunch-page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1rem 0;
    font-family: 'Playfair Display', serif;
}

.lunch-page-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-top: 1.5rem;
    line-height: 1.6;
    font-weight: 600;
}

/* Lunch Menu Container */
.lunch-menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Info Banner */
.lunch-info-banner {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 6px 25px var(--shadow-gold);
}

.info-banner-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
}

.info-item svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.info-item span {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Daily Menus Grid */
.daily-menus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Day Menu Card */
.day-menu-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.day-menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.15);
    border-color: var(--accent-gold);
}

/* Day Header */
.day-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.day-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.day-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-gold);
}

.day-name {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    margin: 0;
}

/* Day Menu Items */
.day-menu-items {
    padding: 2rem;
}

.menu-section {
    margin-bottom: 2rem;
}

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

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-gold);
}

/* Lunch Menu Item */
.lunch-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.8rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--background-light);
}

.lunch-menu-item:hover {
    background: var(--accent-cream);
    transform: translateX(5px);
}

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

.item-info {
    flex: 1;
}

.item-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-family: 'Playfair Display', serif;
}

.item-description {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.4;
    margin-bottom: 0.3rem;
}

.allergens {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--accent-orange);
    font-weight: 600;
    font-style: italic;
}

.item-price {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

/* Special Item Styles */
.lunch-menu-item.featured {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), rgba(245, 158, 11, 0.05));
    border: 2px solid var(--accent-gold);
}

.lunch-menu-item.featured:hover {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.15), rgba(245, 158, 11, 0.1));
}

.lunch-menu-item.spicy {
    position: relative;
}

.lunch-menu-item.spicy::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 0 4px 4px 0;
}

.lunch-menu-item.very-spicy::before {
    background: linear-gradient(135deg, #991b1b, #dc2626);
}

/* Weekend Notice */
.weekend-notice {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    box-shadow: 0 6px 25px var(--shadow);
    color: var(--text-light);
}

.notice-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-gold);
}

.notice-content {
    flex: 1;
}

.notice-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.notice-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.view-menu-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    background: var(--accent-gold);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.view-menu-link:hover {
    background: var(--accent-orange);
    transform: translateX(5px);
}

.view-menu-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.view-menu-link:hover svg {
    transform: translateX(5px);
}

/* ===== Responsive Design ===== */

/* Tablet */
@media (max-width: 1024px) {
    .lunch-page-title {
        font-size: 3rem;
    }

    .lunch-page-subtitle {
        font-size: 1.2rem;
    }

    .info-banner-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .daily-menus-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .weekend-notice {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .lunch-page-header {
        padding: 8rem 1.5rem 4rem;
    }

    .lunch-page-title {
        font-size: 2.5rem;
    }

    .lunch-page-subtitle {
        font-size: 1.1rem;
    }

    .lunch-menu-container {
        padding: 2rem 1rem;
    }

    .lunch-info-banner {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .info-item svg {
        width: 28px;
        height: 28px;
    }

    .info-item span {
        font-size: 0.9rem;
    }

    .daily-menus-grid {
        grid-template-columns: 1fr;
    }

    .day-header {
        padding: 1.5rem;
    }

    .day-name {
        font-size: 1.8rem;
    }

    .day-menu-items {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .lunch-menu-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .item-name {
        font-size: 1rem;
    }

    .item-description {
        font-size: 0.85rem;
    }

    .item-price {
        font-size: 1.3rem;
        align-self: flex-end;
    }

    .weekend-notice {
        padding: 2rem 1.5rem;
    }

    .notice-icon {
        width: 60px;
        height: 60px;
    }

    .notice-icon svg {
        width: 32px;
        height: 32px;
    }

    .notice-content h3 {
        font-size: 1.5rem;
    }

    .notice-content p {
        font-size: 1rem;
    }

    .view-menu-link {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .lunch-page-header {
        padding: 7rem 1rem 3rem;
    }

    .lunch-page-title {
        font-size: 2rem;
    }

    .lunch-page-subtitle {
        font-size: 1rem;
    }

    .lunch-info-banner {
        padding: 1.2rem;
    }

    .info-item span {
        font-size: 0.85rem;
    }

    .day-header {
        padding: 1.2rem;
    }

    .day-icon {
        width: 50px;
        height: 50px;
    }

    .day-icon svg {
        width: 26px;
        height: 26px;
    }

    .day-name {
        font-size: 1.6rem;
    }

    .day-menu-items {
        padding: 1.2rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .lunch-menu-item {
        padding: 0.8rem;
    }

    .item-name {
        font-size: 0.95rem;
    }

    .item-description {
        font-size: 0.8rem;
    }

    .allergens {
        font-size: 0.7rem;
    }

    .item-price {
        font-size: 1.2rem;
    }

    .weekend-notice {
        padding: 1.5rem 1rem;
    }

    .notice-content h3 {
        font-size: 1.3rem;
    }

    .notice-content p {
        font-size: 0.9rem;
    }

    .view-menu-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}
