﻿/* الإعدادات الأساسية للمنيو */
.overlay {
    position: fixed;
    top: 0;
    right: -100%; /* تبدأ خارج الشاشة من اليمين */
    width: 100%; /* عرض مناسب للموبايل والديسكتوب */
    height: 100%;
    background-color: #ffffff;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    direction: rtl; /* لضمان الاتجاه العربي */
}

    /* عندما تصبح القائمة نشطة */
    .overlay.active {
        right: 0;
    }

/* الهيدر داخل المنيو */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.close-btn {
    background: #f5f5f5;
    border: none;
    color: #333;
    font-size: 24px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

    .close-btn:hover {
        background: #375ba6;
        color: #fff;
    }

/* جسم القائمة - قابل للتمرير */
.overlay-nav {
    flex: 1;
    overflow-y: auto;
    padding: 15px 0;
}

    .overlay-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

.nav-link {
    display: block;
    padding: 12px 25px;
    color: #333;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    font-family: 'B-IBMPlexSansArabic', sans-serif;
    transition: 0.2s;
    border-right: 4px solid transparent;
}

    /* تأثير التمرير (Hover) */
    .nav-link:hover {
        background-color: #f8f9fa;
        color: #007bff; /* أو لون شعار موقعك */
        border-right-color: #007bff;
        padding-right: 30px;
    }

    /* الرابط النشط */
    .nav-link.active {
        background-color: #eef6ff;
        color: #007bff;
        border-right-color: #007bff;
    }

/* قسم السوشيال ميديا في الأسفل */
.menu-footer {
    padding: 20px;
    background-color: #fdfdfd;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

    .menu-footer p {
        font-size: 13px;
        color: #888;
        margin-bottom: 10px;
    }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

    .social-icons img {
        width: 22px;
        height: 22px;
        transition: transform 0.3s;
    }

    .social-icons a:hover img {
        transform: translateY(-3px);
    }

/* تحسين السكرول بار */
.overlay-nav::-webkit-scrollbar {
    width: 4px;
}

.overlay-nav::-webkit-scrollbar-thumb {
    background: #eee;
    border-radius: 10px;
}
