:root {
    --black: #121212;
    --dark-gray: #1e1e1e;
    --orange: #e67e22;
    --cream: #f4f1ea;
    --white: #ffffff;
    --font-head: 'Playfair Display', serif;
    --font-body: 'Assistant', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--cream); font-family: var(--font-body); direction: rtl; overflow-x: hidden; }

/* =========================================
   LANDING PAGE STYLES
   ========================================= */

.landing-page { overflow-x: hidden; width: 100%; }

/* Header */
.lp-header {
    position: absolute; top: 0; left: 0; width: 100%; z-index: 100;
    padding: 20px 40px; display: flex; justify-content: space-between; align-items: center;
}
.lp-header .logo { font-family: var(--font-head); font-size: 2.5rem; color: var(--orange); font-weight: bold; letter-spacing: 2px; }
.phone-link { color: #fff; text-decoration: none; font-size: 1.2rem; font-weight: bold; display: flex; align-items: center; gap: 8px; background: rgba(0,0,0,0.6); padding: 8px 16px; border-radius: 50px; border: 1px solid var(--orange); white-space: nowrap; }

/* Hero */
.lp-hero {
    position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 120px 20px 60px; text-align: center;
}
.video-bg { position: absolute; inset: 0; z-index: -1; }
.video-bg video { width: 100%; height: 100%; object-fit: cover; }
.lp-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); } /* הכהיה חזקה יותר לקריאות */

.lp-content { z-index: 2; width: 100%; max-width: 800px; display: flex; flex-direction: column; align-items: center; }
.lp-title { 
    font-family: var(--font-head); font-size: 4.5rem; line-height: 1.1; margin-bottom: 15px; color: #fff; 
    text-shadow: 0 4px 15px rgba(0,0,0,0.9); 
}
.lp-title span { color: var(--orange); }
.lp-subtitle { font-size: 1.4rem; margin-bottom: 30px; color: #ddd; max-width: 600px; line-height: 1.5; }

/* Form */
.lp-form-box {
    background: rgba(20, 20, 20, 0.9); backdrop-filter: blur(10px);
    padding: 30px; border-radius: 12px; border-top: 4px solid var(--orange);
    width: 100%; max-width: 500px; box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.lp-form-box h3 { color: var(--orange); margin-bottom: 20px; font-size: 1.5rem; }
.lp-form-group { margin-bottom: 15px; width: 100%; }
.lp-form-group input { width: 100%; padding: 14px; background: rgba(255,255,255,0.08); border: 1px solid #444; color: #fff; border-radius: 6px; font-size: 1rem; }
.lp-form-row { display: flex; gap: 15px; margin-bottom: 20px; }
.lp-form-row select, .lp-form-row input { width: 100%; padding: 14px; background: rgba(255,255,255,0.08); border: 1px solid #444; color: #fff; border-radius: 6px; font-size: 1rem; }
.lp-btn { width: 100%; padding: 16px; background: var(--orange); color: #fff; border: none; font-weight: bold; font-size: 1.2rem; border-radius: 6px; cursor: pointer; transition: 0.3s; }
.lp-btn:hover { background: #d35400; }

/* Reviews */
.lp-reviews { padding: 80px 20px; background: #111; text-align: center; }
.section-heading { font-family: var(--font-head); font-size: 3rem; color: var(--white); margin-bottom: 50px; }
.reviews-container { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.review-item { background: #1a1a1a; padding: 30px; border-radius: 8px; width: 100%; max-width: 350px; border-bottom: 3px solid var(--orange); }
.stars { color: gold; font-size: 1.2rem; margin-bottom: 15px; }
.review-item p { font-style: italic; color: #ccc; margin-bottom: 15px; font-size: 1.1rem; line-height: 1.5; }
.reviewer { font-weight: bold; color: var(--orange); }

/* Info */
.lp-info { padding: 80px 10%; display: flex; align-items: center; gap: 60px; background: #0a0a0a; }
.info-text { flex: 1; }
.info-text h2 { font-family: var(--font-head); font-size: 2.8rem; color: var(--orange); margin-bottom: 20px; }
.info-text p { font-size: 1.1rem; line-height: 1.8; color: #bbb; margin-bottom: 20px; }
.info-list { list-style: none; padding: 0; }
.info-list li { margin-bottom: 10px; font-size: 1.1rem; }
.info-list i { color: var(--orange); margin-left: 10px; }
.info-images { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.info-images img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; }

.lp-footer { padding: 30px; text-align: center; background: #000; color: #666; border-top: 1px solid #222; }

/* =========================================
   MOBILE RESPONSIVE FIXES (CRITICAL)
   ========================================= */
@media (max-width: 768px) {
    /* Header */
    .lp-header { padding: 15px 20px; }
    .lp-header .logo { font-size: 2rem; }
    .phone-link { font-size: 1rem; padding: 6px 12px; }

    /* Hero */
    .lp-hero { padding: 100px 15px 50px; align-items: flex-start; /* מעלה את התוכן למעלה */ }
    .lp-title { font-size: 2.8rem; margin-top: 20px; } /* כותרת קטנה יותר */
    .lp-subtitle { font-size: 1.1rem; margin-bottom: 30px; }
    
    /* Form - 100% width & stack */
    .lp-form-box { padding: 25px 20px; width: 100%; }
    .lp-form-row { flex-direction: column; gap: 15px; } /* שדות אחד מתחת לשני */
    .lp-form-row select, .lp-form-row input { width: 100%; }
    
    /* Sections */
    .lp-reviews { padding: 60px 20px; }
    .section-heading { font-size: 2.2rem; margin-bottom: 30px; }
    
    .lp-info { flex-direction: column; padding: 60px 20px; text-align: center; }
    .info-text h2 { font-size: 2.2rem; }
    .info-list { text-align: right; display: inline-block; }
    .info-images { width: 100%; grid-template-columns: 1fr; } /* תמונה אחת מתחת לשנייה */
    .info-images img { height: 220px; }
}

/* =========================================
   WEBSITE STYLES (השארתי ללא שינוי, רק להעתקה מלאה)
   ========================================= */
.main-nav { position: fixed; top: 0; width: 100%; padding: 15px 40px; background: rgba(18, 18, 18, 0.98); display: flex; justify-content: space-between; align-items: center; z-index: 1000; border-bottom: 1px solid #333; }
.main-nav .logo { font-family: var(--font-head); font-size: 2rem; color: var(--orange); font-weight: bold; letter-spacing: 2px; }
.desktop-links a { color: var(--white); text-decoration: none; margin-left: 25px; font-weight: 600; transition: 0.3s; font-size: 1.1rem; }
.desktop-links a:hover { color: var(--orange); }
.btn-reserve { border: 1px solid var(--orange); padding: 8px 25px; color: var(--orange) !important; transition: 0.3s; border-radius: 4px; }
.btn-reserve:hover { background: var(--orange); color: #000 !important; }
.mobile-menu-icon { display: none; font-size: 1.8rem; color: var(--white); cursor: pointer; }
.mobile-overlay { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: rgba(0,0,0,0.98); z-index: 2000; transition: 0.4s ease; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.mobile-overlay.open { right: 0; }
.close-btn { position: absolute; top: 30px; right: 30px; font-size: 2rem; color: var(--orange); cursor: pointer; }
.mobile-links a { display: block; font-size: 2rem; color: var(--white); text-decoration: none; margin: 20px 0; font-weight: bold; text-align: center; font-family: var(--font-head); transition: 0.3s; }
.mobile-links a:hover { color: var(--orange); }
.mobile-btn-reserve { color: var(--orange) !important; border: 2px solid var(--orange); padding: 10px 40px; margin-top: 20px !important; display: inline-block; }
.restaurant-hero { height: 90vh; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1559339352-11d035aa65de?q=80&w=1920') center/cover fixed; display: flex; align-items: center; justify-content: center; text-align: center; }
.animated-entrance { animation: fadeInUp 1.2s ease-out; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero-text h1 { font-size: 6rem; font-family: var(--font-head); margin-bottom: 10px; color: var(--white); text-shadow: 0 0 30px rgba(0,0,0,0.8); letter-spacing: 5px; line-height: 1; }
.sub-hero { font-size: 1.8rem; color: var(--orange); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 15px; }
.hero-text p { font-size: 1.4rem; max-width: 700px; margin: 0 auto 40px; }
.hero-btns { display: flex; gap: 20px; justify-content: center; }
.btn-primary { background: var(--orange); color: #fff; padding: 15px 40px; text-decoration: none; font-weight: bold; font-size: 1.2rem; transition: 0.3s; border-radius: 4px; }
.btn-primary:hover { background: #fff; color: #000; }
.btn-outline { border: 2px solid #fff; color: #fff; padding: 15px 40px; text-decoration: none; font-weight: bold; font-size: 1.2rem; transition: 0.3s; border-radius: 4px; }
.btn-outline:hover { background: #fff; color: #000; }
.about-section { padding: 100px 10%; background: var(--dark-gray); }
.about-container { display: flex; gap: 80px; align-items: center; }
.about-image { flex: 1; position: relative; }
.about-image img { width: 100%; border-radius: 4px; box-shadow: 20px 20px 0 var(--orange); }
.chef-quote { position: absolute; bottom: -20px; right: -20px; background: #fff; color: #000; padding: 20px; font-family: var(--font-head); font-size: 1.2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.3); border-left: 5px solid var(--orange); }
.about-content { flex: 1; }
.about-content h3 { color: var(--orange); font-size: 1.3rem; letter-spacing: 2px; text-transform: uppercase; }
.about-content h2 { font-size: 3.5rem; font-family: var(--font-head); margin-bottom: 25px; }
.about-content p { line-height: 1.8; color: #ccc; margin-bottom: 20px; font-size: 1.15rem; }
.about-highlights { list-style: none; margin-top: 20px; }
.about-highlights li { margin-bottom: 10px; font-size: 1.1rem; }
.about-highlights i { color: var(--orange); margin-left: 10px; }
.full-menu-section { padding: 80px 10%; background: var(--black); }
.section-title { text-align: center; margin-bottom: 70px; }
.section-title h2 { font-size: 3.5rem; font-family: var(--font-head); color: var(--cream); }
.separator { color: var(--orange); font-size: 2.5rem; margin: 10px 0 20px; }
.menu-categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 40px; }
.menu-item-card { background: #1a1a1a; border-radius: 12px; overflow: hidden; border: 1px solid #333; transition: 0.3s; }
.menu-item-card:hover { transform: translateY(-5px); border-color: var(--orange); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.dish-img { height: 220px; overflow: hidden; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.menu-item-card:hover .dish-img img { transform: scale(1.1); }
.dish-info { padding: 25px; }
.dish-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.dish-header h4 { font-size: 1.5rem; color: var(--white); margin: 0; font-family: var(--font-head); }
.price { color: var(--orange); font-weight: bold; font-size: 1.3rem; }
.dish-info p { color: #aaa; font-size: 1.05rem; line-height: 1.5; }
.events-section { padding: 100px 10%; background: url('https://images.unsplash.com/photo-1519671482538-518b5c2bf9c6?q=80&w=1920') center/cover fixed; position: relative; text-align: center; color: #fff; }
.events-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); }
.events-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.events-content h2 { font-size: 4rem; font-family: var(--font-head); margin-bottom: 20px; color: var(--orange); }
.events-content p { font-size: 1.4rem; margin-bottom: 40px; }
.event-features { display: flex; justify-content: center; gap: 40px; margin-bottom: 50px; font-size: 1.2rem; font-weight: bold; }
.event-features i { color: var(--orange); margin-left: 10px; font-size: 1.5rem; }
footer { padding: 50px 10%; background: #0a0a0a; border-top: 1px solid #333; color: #777; margin-top: auto; }
.footer-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.footer-container h4 { color: #fff; margin-bottom: 15px; font-size: 1.2rem; }
.socials a { font-size: 1.5rem; color: #fff; margin-right: 20px; transition: 0.3s; }
.socials a:hover { color: var(--orange); }

/* Website Responsive */
@media (max-width: 900px) {
    .main-nav { padding: 15px 20px; }
    .desktop-links { display: none; }
    .mobile-menu-icon { display: block; }
    .hero-text h1 { font-size: 4rem; line-height: 1; }
    .sub-hero { font-size: 1.2rem; }
    .hero-text p { font-size: 1.1rem; padding: 0 20px; }
    .hero-btns { flex-direction: column; gap: 15px; width: 80%; margin: 0 auto; }
    .about-container { flex-direction: column; }
    .menu-categories-grid { grid-template-columns: 1fr; }
    .footer-container { flex-direction: column; text-align: center; gap: 30px; }
}
/* --- עיצוב התפריט (NAV) המתוקן --- */
.main-nav {
    position: fixed; 
    top: 0; 
    width: 100%; 
    padding: 15px 40px;
    background: rgba(18, 18, 18, 0.98); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    z-index: 1000; 
    border-bottom: 1px solid #333;
    height: 80px; /* קיבוע גובה כדי למנוע קפיצות */
    box-sizing: border-box;
}

.main-nav .logo { 
    font-family: var(--font-head); 
    font-size: 2rem; 
    color: var(--orange); 
    font-weight: bold; 
    letter-spacing: 2px; 
    white-space: nowrap; /* מונע שבירת שורה בלוגו */
}

/* לינקים למחשב - במובייל הם יעלמו */
.desktop-links { 
    display: flex; 
    align-items: center; 
}

.desktop-links a { 
    color: var(--white); 
    text-decoration: none; 
    margin-left: 25px; 
    font-weight: 600; 
    transition: 0.3s; 
    font-size: 1.1rem; 
}

.desktop-links a:hover { color: var(--orange); }

.btn-reserve { 
    border: 1px solid var(--orange); 
    padding: 8px 25px; 
    color: var(--orange) !important; 
    transition: 0.3s; 
    border-radius: 4px; 
    white-space: nowrap;
}

.btn-reserve:hover { background: var(--orange); color: #000 !important; }

/* אייקון המבורגר - מוסתר במחשב */
.mobile-menu-icon { 
    display: none; 
    font-size: 1.8rem; 
    color: var(--white); 
    cursor: pointer; 
}

/* --- תיקון למובייל (MEDIA QUERY) --- */
@media (max-width: 900px) {
    .main-nav { 
        padding: 10px 20px; /* הקטנת רווחים בצדדים כדי שיהיה מקום */
    }
    
    /* הסתרה מוחלטת של הלינקים הרגילים */
    .desktop-links { 
        display: none !important; 
    }
    
    /* הצגת המבורגר */
    .mobile-menu-icon { 
        display: block; 
    }
    
    .hero-text h1 { font-size: 4rem; line-height: 1; }
    .hero-btns { flex-direction: column; width: 80%; margin: 0 auto; gap: 15px; }
    
    .about-container { flex-direction: column; }
    .menu-categories-grid { grid-template-columns: 1fr; }
    .footer-container { flex-direction: column; text-align: center; gap: 30px; }
}