/* style.css - ملف الأنماط الرئيسي (مشترك لجميع الصفحات) */

/* متغيرات الألوان */
:root {
    --green-dark: #2c4a3b;
    --green-soft: #4a6b5c;
    --cream: #faf3e0;
    --cream-deep: #f5e5c8;
    --white: #ffffff;
    --grey-light: #f9f9f9;
    --shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--white);
    color: var(--green-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
    text-align: center;
}

/* العناوين */
h1, h2, h3 {
    font-weight: 700;
    color: var(--green-dark);
}

h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 60px;
    height: 4px;
    background-color: var(--cream-deep);
    border-radius: 4px;
}

/* الأزرار */
.btn {
    display: inline-block;
    background-color: var(--cream);
    color: var(--green-dark);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    cursor: pointer;
}

.btn:hover {
    background-color: var(--cream-deep);
    border-color: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--cream);
    margin-right: 1rem;
}

.btn-outline:hover {
    background: var(--cream);
}

/* شريط التنقل */
.navbar {
    background-color: var(--white);
    padding: 0.8rem 5%;
    box-shadow: 0 2px 15px rgba(44, 74, 59, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
      
    }

logo {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.logo-img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    border-radius: 1px;
    transition: transform 0.3s ease;
}


.logo-img:hover {
    transform: scale(1.05);
}


.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: var(--green-dark);
    font-size: 1.1rem;
    transition: 0.2s;
    padding: 8px 0;
    border-bottom: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    border-bottom-color: var(--cream-deep);
    color: var(--green-soft);
}

.lang-switch {
    background: var(--cream);
    border: none;
    border-radius: 50px;
    padding: 6px 18px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    color: var(--green-dark);
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s;
}

.lang-switch:hover {
    background: var(--cream-deep);
    border-color: var(--green-dark);
}

/* ترتيب العناصر حسب اللغة */
body:not(.en) .lang-switch {
    margin-right: 200px;
}

body.en .lang-switch {
    margin-left: 200px;
}

/* الحاوية */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

/* القسم الرئيسي Hero */
.hero {
    padding: 3rem 0 5rem 0;
    background: linear-gradient(145deg, var(--white) 30%, var(--cream) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.hero-content {
    flex: 1 1 400px;
}

.hero-content h1 {
    font-size: 3.3rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.hero-content h1 span {
    background: var(--cream);
    padding: 0 15px;
    display: inline-block;
    border-radius: 60px 20px 60px 20px;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--green-soft);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1 1 400px;
    min-height: 300px;
    border-radius: 30px 8px 30px 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* قسم من نحن */
.about {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 2 1 300px;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--green-soft);
    margin-bottom: 1rem;
}

.about-highlight {
    background: var(--cream);
    padding: 1.8rem;
    border-radius: 30px 8px 30px 8px;
    flex: 1 1 250px;
    text-align: center;
    
    
    
  
}

.about-highlight img {
    font-size: 3rem;
    color: var(--green-dark);
   

    height: 100%;
    width: 100%;
}

/* صفحة المنتجات */
.products-page {
    padding: 4rem 0;
    background: var(--white);
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1rem 0 2rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--cream-deep);
    padding: 8px 25px;
    border-radius: 40px;
    font-weight: 600;
    color: var(--green-dark);
    cursor: pointer;
    transition: 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--cream-deep);
    border-color: var(--green-dark);
}

/* شبكة المنتجات */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* بطاقة المنتج */
.product-card {
    background: var(--white);
    border-radius: 30px 8px 30px 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
}

/* حاوية الصورة */
.product-img {
    height: 250px;
    background: var(--cream);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

/* تنسيق خاص للصور الطويلة (الصوصات) */
.product-card[data-category="sauce"] .product-img img {
    object-fit: contain;
    background-color: var(--cream);
    padding: 10px;
}

/* تنسيق خاص للصور العريضة (السلطات) */
.product-card[data-category="salad"] .product-img img {
    object-fit: cover;
    object-position: center;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

/* طبقة التغطية عند تمرير الماوس */
.product-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 74, 59, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 15;
    backdrop-filter: blur(3px);
}

.product-img:hover .product-img-overlay {
    opacity: 1;
}

.overlay-text {
    color: var(--cream);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    padding: 12px 20px;
    background: var(--green-dark);
    border-radius: 50px;
    border: 2px solid var(--cream);
    transform: translateY(10px);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-img:hover .overlay-text {
    transform: translateY(0);
}

.overlay-text i {
    font-size: 1.2rem;
}

/* تصنيف المنتج - أعلى يمين الصورة */
.product-cat {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--cream-deep);
    padding: 0.3rem 1.2rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-dark);
    z-index: 20;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    pointer-events: none;
}

/* اسم المنتج */
.product-card h3 {
    margin: 1rem 1rem 0.5rem;
    font-size: 1.6rem;
}

/* وصف المنتج */
.product-card p {
    margin: 0 1rem 1rem;
    color: var(--green-soft);
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
    
}

/* السعر */
.price {
    margin: 0.5rem 1rem 1.5rem;
    font-weight: 700;
    font-size: 1.4rem;
    display: block;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
    border-top: 1px solid var(--cream);
    
}

.price-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--green-dark);
   

}

.currency {
    font-size: 1rem;
    font-weight: 500;
    color: var(--green-soft);
    text-align: center;
    
    
}

.price i {
    background: var(--cream);
    padding: 10px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: 0.2s;
   
}

.price i:hover {
    background: var(--cream-deep);
    transform: scale(1.1);
}

/* النافذة المنبثقة للمكونات */
.popup-ingredients {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-ingredients.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--white);
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
    padding: 2rem;
    position: relative;
    animation: popupSlide 0.3s ease;
    direction: rtl;
    max-height: 80vh;
    overflow-y: auto;
}

@keyframes popupSlide {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--green-dark);
    transition: 0.2s;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cream);
}

.popup-close:hover {
    background: var(--cream-deep);
    transform: rotate(90deg);
}

.popup-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--green-dark);
    padding-left: 40px;
}

.popup-ingredients-list {
    margin: 1.5rem 0;
    padding: 0;
}

.ingredient-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.ingredient-item i {
    color: var(--green-dark);
    font-size: 1.2rem;
    width: 25px;
    margin-top: 2px;
}

.ingredient-item span {
    color: var(--green-soft);
    font-size: 1rem;
    line-height: 1.5;
    flex: 1;
}

.popup-price {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--cream);
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--green-dark);
    text-align: center;
}

/* قسم التواصل */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* نموذج الاتصال */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto 4rem;
    background: var(--white);
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-dark);
    box-shadow: 0 0 0 3px rgba(44, 74, 59, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* تنسيق خاص لحقل الموقع */
.form-group input[name="location"] {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%234a6b5c" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 45px;
}

body.en .form-group input[name="location"] {
    background-position: left 15px center;
    padding-right: 18px;
    padding-left: 45px;
}

/* تحسينات للشاشات الصغيرة */
@media (max-width: 768px) {
    .form-group input[name="location"] {
        background-position: right 12px center;
        background-size: 16px;
        padding-right: 40px;
    }
    
    body.en .form-group input[name="location"] {
        background-position: left 12px center;
        padding-left: 40px;
        padding-right: 15px;
    }
}

.submit-btn {
    width: 100%;
    background: var(--green-dark);
    color: var(--white);
    padding: 14px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--green-soft);
    transform: translateY(-2px);
}

.submit-btn i {
    margin-right: 8px;
}

/* معلومات الاتصال */
.contact-info-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--green-dark);
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--green-dark);
}

.info-content p {
    color: var(--green-soft);
    line-height: 1.5;
    margin: 0;
}

/* أيقونات التواصل الاجتماعي */
.social-links-section {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.social-links-section h3 {
    margin-bottom: 1.5rem;
    color: var(--green-dark);
}

.social-links-footer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cream);
    color: var(--green-dark);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: var(--cream-deep);
}

.social-icon.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
    color: white;
}

.social-icon.tiktok:hover {
    background: #000000;
    color: #00f2ea;
}

.social-icon.whatsapp:hover {
    background: #25d366;
    color: white;
}

/* ========== تذييل الصفحة المعدل ========== */
footer {
    background: var(--green-dark);
    color: #e0ecd9;
    padding: 2rem 5% 1.5rem;
    margin-top: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 1.8rem;
    background: var(--cream);
    color: var(--green-dark);
    padding: 6px;
    border-radius: 50%;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 600;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ========== تحسين للشاشات الصغيرة ========== */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        grid-template-columns: 1fr;
    }
    
    .contact-info-item {
        padding: 1rem;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
    }
    
    .info-icon i {
        font-size: 1.2rem;
    }
    
    .social-links-footer {
        gap: 1rem;
    }
    
    .social-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 1rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}


/* اللغة الإنجليزية */
body.en {
    direction: ltr;
}

body.en h2:after {
    right: auto;
    left: 0;
}

body.en .product-cat {
    right: auto;
    left: 15px;
}

body.en .btn i {
    transform: rotate(180deg);
    display: inline-block;
}

body.en .popup-content {
    direction: ltr;
    text-align: left;
}

body.en .popup-close {
    left: auto;
    right: 20px;
}

body.en .ingredient-item {
    direction: ltr;
}

body.en .overlay-text {
    direction: ltr;
}
/* ============================================ */
/* ========== MOBILE MENU OVERRIDES ========== */
/* ============================================ */

/* زر القائمة الجانبية (Hamburger Menu) */
.menu-toggle {
    display: none;
    background: var(--cream);
    border: none;
    border-radius: 50px;
    padding: 10px 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--green-dark);
    transition: 0.2s;
    z-index: 1001;
    position: absolute;
    top: 20px;
    left: 20px;
}

.menu-toggle:hover {
    background: var(--cream-deep);
}

/* شاشات الهواتف - تحويل القائمة إلى قائمة جانبية */
@media (max-width: 768px) {
    /* إخفاء زر اللغة من القائمة العلوية */
    .lang-switch {
        display: none;
    }
    
    /* إظهار زر القائمة الجانبية */
    .menu-toggle {
        display: block;
    }
    
    body.en .menu-toggle {
        left: auto;
        right: 20px;
    }
    
    /* تعديل شريط التنقل للهواتف */
    .navbar {
        position: relative;
        padding: 0.8rem 4%;
        justify-content: center;
    }
    
    .logo {
        margin: 0 auto;
    }
    
    /* القائمة الجانبية */
    .nav-links {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: -2px 0 15px rgba(0, 0, 0, 0.2);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5rem;
        padding: 80px 20px 30px;
        transition: right 0.3s ease;
        z-index: 1002;
        margin: 0;
        overflow-y: auto;
    }
    
    /* اللغة العربية - القائمة من اليمين */
    body:not(.en) .nav-links {
        left: -280px;
        right: auto;
    }
    
    body:not(.en) .nav-links.active {
        left: 0;
    }
    
    /* اللغة الإنجليزية - القائمة من اليسار */
    body.en .nav-links {
        left: auto;
        right: -280px;
    }
    
    body.en .nav-links.active {
        right: 0;
    }
    
    /* تنسيق روابط القائمة الجانبية */
    .nav-links li {
        width: 100%;
        text-align: center;
        list-style: none;
    }
    
    .nav-links a {
        display: block;
        padding: 12px 20px;
        font-size: 1.1rem;
        border-bottom: none;
        border-radius: 50px;
        transition: 0.2s;
        background: transparent;
        color: var(--green-dark);
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background: var(--cream);
        border-bottom: none;
    }
    
    /* زر اللغة داخل القائمة الجانبية */
    .lang-switch-mobile {
        display: block;
        background: var(--cream);
        border: none;
        border-radius: 50px;
        padding: 10px 20px;
        font-weight: 600;
        font-family: 'Cairo', sans-serif;
        font-size: 1rem;
        color: var(--green-dark);
        cursor: pointer;
        transition: 0.2s;
        width: 100%;
        margin-top: 20px;
    }
    
    .lang-switch-mobile:hover {
        background: var(--cream-deep);
    }
    
    /* طبقة التعتيم الخلفية - تمنع الضغط على المحتوى خلف القائمة فقط */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1001;
        pointer-events: none;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    /* منع التمرير عند فتح القائمة */
    body.menu-open {
        overflow: hidden;
    }
    
    /* التأكد من أن القائمة فوق كل العناصر */
    .nav-links.active {
        z-index: 1003;
    }
}

/* شاشات الهواتف الصغيرة (تحت 480px) */
@media (max-width: 480px) {
    .nav-links {
        width: 260px;
        padding: 70px 15px 25px;
        gap: 1.2rem;
    }
    
    .nav-links a {
        padding: 10px 16px;
        font-size: 1rem;
    }
    
    .lang-switch-mobile {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .menu-toggle {
        padding: 8px 12px;
        font-size: 1.3rem;
        top: 18px;
        left: 15px;
    }
    
    body.en .menu-toggle {
        left: auto;
        right: 15px;
    }
}

/* شاشات الهواتف الصغيرة جداً (تحت 360px) */
@media (max-width: 360px) {
    .nav-links {
        width: 240px;
        padding: 60px 12px 20px;
        gap: 1rem;
    }
    
    .nav-links a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* تأثيرات القائمة الجانبية */
@keyframes menuSlideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes menuSlideInLTR {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.nav-links.active {
    animation: menuSlideInrtl 0.3s ease forwards;
}

body.en .nav-links.active {
    animation: menuSlideIn 0.3s ease forwards;
}