﻿/*NavMenu.css*/

.navmenu-header {
    padding: 14px 14px 12px;
    color: #fff;
    font-family: Cambria, "Times New Roman", serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: .2px;
    border-bottom: 1px solid rgba(255,255,255,.10);
    margin-bottom: 10px;
}

.nav-tree {
    padding: 0 0 14px;
    font-family: Cambria, "Times New Roman", serif;
}

/* كل قسم */
.nav-section {
    margin-bottom: 4px;
}

/* رأس القسم */
.nav-section-header {
    width: calc(100% - 16px);
    margin: 3px 8px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.96);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-family: Cambria, "Times New Roman", serif;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
    transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

    .nav-section-header:hover {
        background: rgba(255,255,255,.09);
        color: #fff;
    }

    .nav-section-header.open {
        background: rgba(255,255,255,.11);
        color: #fff;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
    }

.nav-section-title {
    font-size: 16px;
    line-height: 1.35;
    flex: 1;
    font-family: Cambria, "Times New Roman", serif;
    font-weight: 700;
}

/* السهم */
.nav-caret {
    font-size: 14px;
    opacity: .9;
    transition: transform .22s ease, opacity .22s ease;
}

    .nav-caret.open {
        transform: rotate(180deg);
        opacity: 1;
    }

/* المحتوى الداخلي */
.nav-sub {
    margin: 2px 8px 10px;
    padding: 4px 0 8px;
    border-right: 2px solid rgba(255,255,255,.10);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .28s ease, opacity .22s ease;
}

    .nav-sub.open {
        max-height: 2000px;
        opacity: 1;
    }

/* العناوين الصغيرة القديمة إن بقيت مستخدمة */
.nav-sub-title {
    color: rgba(255,255,255,.72);
    font-size: 14px;
    font-family: Cambria, "Times New Roman", serif;
    font-weight: 700;
    margin: 8px 16px 5px;
}

/* الروابط */
.nav-sub-link {
    color: rgba(255,255,255,.92);
    padding: 10px 14px;
    border-radius: 10px;
    margin: 2px 14px;
    display: block;
    text-decoration: none;
    font-family: Cambria, "Times New Roman", serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    transition: background .18s ease, color .18s ease, transform .12s ease;
}

    .nav-sub-link:hover {
        background: rgba(255,255,255,.08);
        color: #fff;
        transform: translateX(-1px);
    }

    .nav-sub-link.active {
        background: rgba(255,255,255,.14);
        color: #fff;
        font-weight: 700;
    }

/* الأقسام الفرعية المتداخلة داخل قسم رئيسي مثل المحاسبة */
.nav-sub .nav-section {
    margin: 4px 0 2px;
}

.nav-sub .nav-section-header {
    width: auto;
    margin: 4px 10px 2px 14px;
    padding: 10px 12px;
    font-size: 15px;
    border-radius: 10px;
    background: rgba(255,255,255,.035);
}

    .nav-sub .nav-section-header:hover {
        background: rgba(255,255,255,.07);
    }

    .nav-sub .nav-section-header.open {
        background: rgba(255,255,255,.09);
    }

/* محتوى القسم الفرعي الثاني */
.nav-sub .nav-sub {
    margin: 2px 10px 8px 18px;
    padding: 4px 0 6px;
    border-right: 1px solid rgba(255,255,255,.10);
}

    .nav-sub .nav-sub .nav-sub-link {
        margin: 2px 10px;
        padding: 9px 12px;
        font-size: 14px;
        font-weight: 600;
        color: rgba(255,255,255,.9);
    }

        .nav-sub .nav-sub .nav-sub-link:hover,
        .nav-sub .nav-sub .nav-sub-link.active {
            color: #fff;
        }

/* تسجيل الدخول أسفل القائمة */
.nav-tree .px-2.mt-2 {
    margin-top: 12px !important;
    padding-inline: 10px !important;
}

/* للشاشات الأصغر */
@media (max-width: 768px) {
    .navmenu-header {
        font-size: 17px;
    }

    .nav-section-title {
        font-size: 15px;
    }

    .nav-sub-link {
        font-size: 14px;
        padding: 9px 12px;
    }
}
