/* --- Custom Premium Navbar Styles --- */

/* استایل کلی لیست منو */
.navigation_wrapper {
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}

/* استایل لینک‌های منو */
.navigation_wrapper li a {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #475569 !important; /* رنگ slate-600 */
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    padding: 0.5rem 0.2rem !important;
    display: inline-block;
}

/* حالت هاور */
.navigation_wrapper li a:hover {
    color: #3b82f6 !important; /* آبی برند */
}

/* خط متحرک زیر منو */
.navigation_wrapper li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background: #3b82f6;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 10px;
}

.navigation_wrapper li a:hover::after {
    width: 100%;
}

/* هماهنگی با حالت تاریک (Dark Mode) */
.dark .navigation_wrapper li a {
    color: #cbd5e1 !important; /* slate-300 */
}

.dark .navigation_wrapper li a:hover {
    color: #ffffff !important;
}

.dark .navigation_wrapper li a::after {
    background: #60a5fa; /* آبی روشن‌تر برای حالت تاریک */
}

/* افکت شیشه‌ای دکمه‌های آیکون‌دار */
header a.group {
    backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.dark header a.group {
    border-color: rgba(51, 65, 85, 0.5);
}