/* Styles for the lunch menu with continuous layout */

/* Featured dish styles */
.featured-lunch-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
}

.featured-lunch-item:nth-child(odd) {
    flex-direction: row;
}

.featured-lunch-item:nth-child(even) {
    flex-direction: row-reverse;
}

.lunch-item-image {
    flex: 0 0 60%;
    position: relative;
    overflow: hidden;
}

.lunch-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.featured-lunch-item:hover .lunch-item-image img {
    transform: scale(1.05);
}

.lunch-item-content {
    flex: 0 0 40%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lunch-item-title {
    font-size: 28px;
    margin-bottom: 10px;
    color: #1a5276;
}

.lunch-item-description {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.lunch-item-price {
    font-size: 22px;
    color: #e67e22;
    font-weight: 700;
    margin-top: auto;
    align-self: flex-end;
}

/* Daily menu styles */
.lunch-daily-menu {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lunch-day {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.lunch-day:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.lunch-day-header {
    margin-bottom: 15px;
}

.lunch-day-title {
    font-size: 24px;
    color: #1a5276;
    margin-bottom: 5px;
}

.lunch-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.lunch-option {
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.lunch-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.lunch-option-title {
    font-size: 18px;
    margin: 0;
    color: #333;
    font-weight: 600;
}

.lunch-option-price {
    font-size: 16px;
    color: #e67e22;
    font-weight: 700;
}

.lunch-option-description {
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    margin: 0;
}

/* Remove spacing between featured lunch items */
.lunch-section .featured-lunch-item + .featured-lunch-item {
    margin-top: 0;
}

/* Create a continuous flow of featured lunches */
.lunch-section .featured-lunch-item {
    border-radius: 0;
}

.lunch-section .featured-lunch-item:first-child {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.lunch-section .featured-lunch-item:last-child {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* Responsive design */
@media (max-width: 992px) {
    .featured-lunch-item,
    .featured-lunch-item:nth-child(odd),
    .featured-lunch-item:nth-child(even) {
        flex-direction: column;
    }
    
    .lunch-item-image,
    .lunch-item-content {
        flex: 0 0 100%;
    }
    
    .lunch-item-image {
        height: 250px;
    }
    
    .lunch-options {
        grid-template-columns: 1fr;
    }
}
