/* Menu du Jour - Modern Minimal Design inspired by La Croix Fédérale */

* {
    box-sizing: border-box;
}

.menu-du-jour-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0;
    background: #ffffff;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    position: relative;
}

/* Date Range */
.mdj-date-range {
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.5px;
}

/* Grid Layout */
.mdj-grid {
    display: grid;
    grid-template-columns: 180px repeat(5, 1fr);
    gap: 0;
}

.mdj-cell {
    padding: 24px 20px;
    border-bottom: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background-color 0.2s ease;
}

/* Header Cells */
.mdj-header-empty {
    background: #fafafa;
    min-height: auto;
    padding: 20px;
    border-bottom: 2px solid #222;
    border-right: 1px solid #e8e8e8;
}

.mdj-header-day {
    background: #fafafa;
    color: #222;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
    min-height: auto;
    padding: 20px 10px;
    border-bottom: 2px solid #222;
    border-right: 1px solid #e8e8e8;
}

.mdj-header-day:last-child {
    border-right: none;
}

/* Label Cells */
.mdj-label {
    background: #fafafa;
    justify-content: center;
    gap: 6px;
    border-right: 1px solid #e8e8e8;
}

.mdj-label-title {
    font-size: 11px;
    font-weight: 700;
    color: #666;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.mdj-label-price {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-top: 2px;
}

/* Content Cells */
.mdj-content {
    background: #fff;
    justify-content: flex-start;
    gap: 10px;
    border-right: 1px solid #e8e8e8;
}

.mdj-content:hover {
    background: #fafafa;
}

.mdj-content:last-child {
    border-right: none;
}

.mdj-dish-name {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

.mdj-dish-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    font-weight: 400;
}

.mdj-closed {
    font-size: 14px;
    font-weight: 500;
    color: #ccc;
    text-align: center;
    align-self: center;
}

/* Special Menu */
.mdj-special-menu {
    margin: 0px 0;
    padding: 28px 32px;
    background: #fafafa;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.mdj-special-label {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mdj-special-asterisk {
    font-size: 16px;
    color: #222;
    font-weight: 400;
}

.mdj-special-desc {
    font-size: 15px;
    color: #555;
    flex: 1;
    font-weight: 400;
}

.mdj-special-price {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-left: auto;
}

/* Footer */
.mdj-footer {
    text-align: center;
    padding: 0px 20px;
    margin-top: 20px;
}

.mdj-footer p {
    font-size: 13px;
    color: #888;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .menu-du-jour-container {
        margin: 50px 20px;
    }
    
    .mdj-date-range {
        position: static;
        margin-bottom: 20px;
        padding-left: 5px;
    }
    
    .mdj-grid {
        grid-template-columns: 160px repeat(5, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .menu-du-jour-container {
        margin: 40px 15px;
    }
    
    .mdj-date-range {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .mdj-grid {
        grid-template-columns: 140px repeat(5, 1fr);
    }
    
    .mdj-cell {
        padding: 20px 12px;
        min-height: 100px;
    }
    
    .mdj-header-day {
        font-size: 12px;
        padding: 18px 8px;
    }
    
    .mdj-label-title {
        font-size: 10px;
    }
    
    .mdj-label-price {
        font-size: 16px;
    }
    
    .mdj-dish-name {
        font-size: 14px;
    }
    
    .mdj-dish-desc {
        font-size: 12px;
    }
    
    .mdj-special-menu {
        margin: 40px 0;
        padding: 24px 28px;
    }
}

@media screen and (max-width: 768px) {
    .menu-du-jour-container {
        margin: 30px 10px;
    }
    
    .mdj-date-range {
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .mdj-grid {
        grid-template-columns: 120px repeat(5, 1fr);
    }
    
    .mdj-cell {
        padding: 16px 10px;
        min-height: 90px;
    }
    
    .mdj-header-day {
        font-size: 11px;
        padding: 16px 6px;
        letter-spacing: 1.5px;
    }
    
    .mdj-label-title {
        font-size: 9px;
    }
    
    .mdj-label-price {
        font-size: 15px;
    }
    
    .mdj-dish-name {
        font-size: 13px;
    }
    
    .mdj-dish-desc {
        font-size: 11px;
    }
    
    .mdj-special-menu {
        margin: 35px 0;
        padding: 20px 24px;
    }
    
    .mdj-special-label {
        font-size: 13px;
    }
    
    .mdj-special-desc {
        font-size: 14px;
    }
    
    .mdj-special-price {
        font-size: 18px;
    }
}

@media screen and (max-width: 576px) {
    .menu-du-jour-container {
        margin: 20px 5px;
    }
    
    .mdj-date-range {
        font-size: 10px;
        margin-bottom: 10px;
    }
    
    .mdj-grid {
        grid-template-columns: 100px repeat(5, 1fr);
    }
    
    .mdj-cell {
        padding: 14px 8px;
        min-height: 80px;
    }
    
    .mdj-header-day {
        font-size: 10px;
        padding: 14px 4px;
        letter-spacing: 1px;
    }
    
    .mdj-label-title {
        font-size: 8px;
    }
    
    .mdj-label-price {
        font-size: 14px;
    }
    
    .mdj-dish-name {
        font-size: 12px;
    }
    
    .mdj-dish-desc {
        font-size: 10px;
    }
    
    .mdj-special-menu {
        margin: 30px 0;
        padding: 18px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .mdj-special-label {
        font-size: 12px;
    }
    
    .mdj-special-desc {
        font-size: 13px;
    }
    
    .mdj-special-price {
        font-size: 17px;
        margin-left: 0;
    }
    
    .mdj-footer {
        padding: 30px 15px;
    }
    
    .mdj-footer p {
        font-size: 12px;
    }
}

/* Print Styles */
@media print {
    .menu-du-jour-container {
        margin: 0;
    }
    
    .mdj-content:hover {
        background: #fff;
    }
}
