/* navbar.css */
:root {
  --primary-color: #3498db;
  --secondary-color: #2c3e50;
  --accent-color: #e74c3c;
  --light-bg: #f8f9fa;
  --dark-bg: #2c3e50;
  --gradient-primary: linear-gradient(135deg, #3498db, #2980b9);
  --gradient-secondary: linear-gradient(135deg, #2c3e50, #34495e);
  --navbar-bg: #07364d;
  --navbar-text: #eef0f4;
  --navbar-hover: #0d6efd;
}
/* الأساسيات */
.navbar {
  background: var(--navbar-bg, #07364d) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 0.6rem 1rem;
  transition: all 0.3s ease;
}

/* شعار الموقع */
.navbar-brand {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navbar-text, #eef0f4) !important;          
  display: inline-block;
  letter-spacing: 0.5px;            /* مسافة بسيطة بين الحروف */
  transition: transform 0.3s ease;  /* حركة عند التفاعل */
}

.navbar-brand:hover {
  transform: scale(1.05);           /* تكبير بسيط عند المرور */
}

.lambda {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem; 
  font-weight: 600; 
  color: #ffffff;
  letter-spacing: 0.5px;
}

.lambda .lambda-symbol {
  color: #f5c518; /* اللون الذهبي للرمز λ */
}

.navbar-brand .hub {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  margin-left: 4px;
}

.logo {
  height: 35px; 
  width: auto;
}


.navbar-nav {
  margin-left: 3rem; /* يبعد القوائم عن الشعار */
}


/* الروابط */
.navbar-nav .nav-link {
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0.4rem;
  padding: 0.25rem 0.5rem;
  color: var(--navbar-text, #eef0f4) !important;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--navbar-hover, #0d6efd) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navbar-hover, #0d6efd);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* زر القائمة للشاشات الصغيرة */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* الأزرار داخل الـ Navbar */
.navbar .btn {
  color: #fff;
}

/* تحسين القوائم المنسدلة */
.dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem;
  background: #fff;
}

.dropdown-item {
  border-radius: 8px;
  margin: 0.2rem 0;
  transition: all 0.2s ease;
  color: #333;
}

.dropdown-item:hover {
  background: var(--light-bg, #f8f9fa);
  color: #333;
}

.dropdown-item-text {
  color: #6c757d;
}

/* الأزرار العامة */
.btn {
  border-radius: 8px;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 0.3rem 0.75rem;
}

.btn-outline-primary {
  border: 1px solid var(--primary-color, #3498db);
  color: var(--primary-color, #3498db);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary-color, #3498db);
  border-color: var(--primary-color, #3498db);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
  color: #fff;
}

/* Avatar placeholder */
.avatar-placeholder {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  line-height: 28px;
  font-weight: bold;
}

/* الهواتف الصغيرة جدًا */
@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1rem;
  }
  .nav-link {
    font-size: 0.85rem;
    margin: 0.1rem 0;
  }
  .logo {
    height: 28px;
  }
}

/* التابلت */
@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1.2rem;
  }
  .nav-link {
    margin: 0.2rem 0;
    font-size: 0.9rem;
  }
}

/* اللابتوب */
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-brand {
    font-size: 1.4rem;
  }
  .nav-link {
    font-size: 1rem;
    margin: 0 0.3rem;
  }
}

/* الشاشات الكبيرة */
@media (min-width: 1200px) {
  .navbar-brand {
    font-size: 1.6rem;
  }
  .nav-link {
    font-size: 1.1rem;
    margin: 0 0.5rem;
  }
}

/* الشاشات الضخمة (4K أو 55 إنش) */
@media (min-width: 1920px) {
  .navbar-brand {
    font-size: 1.8rem;
  }
  .nav-link {
    font-size: 1.25rem;
    margin: 0 0.75rem;
  }
  .logo {
    height: 45px;
  }
}

