﻿body {
}
/* تنسيقات عامة للناڤ بار */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* تنسيقات روابط الناڤ بار */
.nav-link {
    font-weight: 600;
    color: #333 !important;
    position: relative;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.nav-link-hover {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #4a6cf7;
    transition: width 0.3s ease;
}

.nav-link:hover .nav-link-hover {
    width: 60%;
}

.nav-link:hover {
    color: #4a6cf7 !important;
}

/* تنسيقات القوائم المنسدلة */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-top: 10px;
}

.dropdown-item {
    transition: all 0.2s ease;
    border-radius: 6px;
    margin: 2px 5px;
    width: auto;
}

    .dropdown-item:hover {
        background-color: #f8f9fa;
        color: #4a6cf7 !important;
        transform: translateX(-3px);
    }

/* تعديلات للشاشات الصغيرة */
@media (max-width: 992px) {
    .navbar-nav {
        padding: 10px 0;
    }

    .nav-link {
        padding: 10px 15px;
    }

    .dropdown-menu {
        box-shadow: none;
        border: 1px solid #eee;
    }
}


/* تعديل الارتفاعات */
.navbar {
    min-height: 60px; /* بدلاً من 80px التي كانت افتراضية */
}

.nav-link {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* تعديلات للشاشات الصغيرة */
@media (max-width: 992px) {
    .navbar {
        min-height: 56px;
    }

    .nav-link {
        padding: 8px 12px;
    }
}