/* תפריט דיגיטלי - עיצוב מלא עם 3 צבעים דינמיים */

.ems-event-menu {
    /* רקע גרדיאנט דינמי */
    background: linear-gradient(135deg, 
        var(--hall-secondary-color, #1a5c3e) 0%, 
        #000000 100%
    );
    color: var(--hall-text-color, #ffffff);
    padding: 60px 40px;
    font-family: 'Heebo', 'Arial', sans-serif;
    direction: rtl;
    min-height: 100vh;
    box-sizing: border-box;
}

/* כותרת ראשית */
.ems-event-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--hall-primary-color, #c9a961);
}

.ems-couple-name {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.3;
    color: var(--hall-primary-color, #c9a961);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.ems-event-date {
    font-size: 20px;
    color: var(--hall-text-color, #ffffff);
    margin: 15px 0 0;
    font-weight: 300;
    opacity: 0.9;
}

/* הערות/ברכה */
.ems-event-notes {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    margin: 0 0 50px;
    border-radius: 12px;
    border-right: 4px solid var(--hall-primary-color, #c9a961);
    font-size: 18px;
    line-height: 1.8;
    color: var(--hall-text-color, #ffffff);
}

/* תוכן התפריט */
.ems-menu-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* קטגוריה */
.ems-menu-category {
    margin-bottom: 60px;
}

.ems-category-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 35px;
    padding-bottom: 15px;
    color: var(--hall-primary-color, #c9a961);
    border-bottom: 3px solid var(--hall-primary-color, #c9a961);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* רשת המנות */
.ems-menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* מנה בודדת */
.ems-menu-item {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ems-menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border-color: var(--hall-primary-color, #c9a961);
}

/* תמונת מנה */
.ems-item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.ems-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ems-menu-item:hover .ems-item-image img {
    transform: scale(1.1);
}

/* תוכן מנה */
.ems-item-content {
    padding: 20px;
}

.ems-item-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--hall-text-color, #ffffff);
}

.ems-item-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--hall-text-color, #ffffff);
    margin: 0;
    opacity: 0.8;
}

/* פוטר אולם */
.ems-hall-footer {
    text-align: center;
    padding: 40px 20px 30px;
    margin-top: 50px;
    border-top: 2px solid var(--hall-primary-color, #c9a961);
    background: rgba(0, 0, 0, 0.3);
}

.ems-hall-footer h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--hall-primary-color, #c9a961);
    margin: 0 0 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.ems-hall-footer a {
    color: var(--hall-text-color, #ffffff);
    text-decoration: none;
    transition: color 0.3s;
}

.ems-hall-footer a:hover {
    color: var(--hall-primary-color, #c9a961);
}

/* אין מנות */
.ems-no-menu {
    text-align: center;
    padding: 60px 20px;
    color: var(--hall-text-color, #999);
    font-size: 18px;
}

/* תצוגה למובייל */
@media (max-width: 768px) {
    .ems-event-menu {
        padding: 40px 20px;
    }
    
    .ems-couple-name {
        font-size: 32px;
    }
    
    .ems-category-title {
        font-size: 28px;
    }
    
    .ems-menu-items {
        grid-template-columns: 1fr;
    }
    
    .ems-hall-logo img {
        max-width: 300px !important;
    }
}

/* תצוגה להדפסה */
@media print {
    .ems-event-menu {
        background: white !important;
        color: black !important;
    }
    
    .ems-couple-name,
    .ems-category-title,
    .ems-hall-footer h3 {
        color: black !important;
    }
    
    .ems-menu-item {
        page-break-inside: avoid;
        border: 1px solid #ddd !important;
    }
}