/* =========== الهيدر =========== */
header {
  background: linear-gradient(45deg, #2c3e50, #4ca1af);
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  position: relative;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-container img {
  height: 50px;
  border-radius: 8px;
}

.toggle-btn {
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(26, 26, 46, 0.95);
  border-radius: 10px;
  padding: 10px;
  display: none;
  flex-direction: column;
  min-width: 220px;
  z-index: 10000;
  animation: fadeIn 0.3s ease-in-out;
}

.nav-menu a {
  color: white;
  padding: 10px;
  text-decoration: none;
  transition: background 0.3s;
  border-radius: 6px;
}

.nav-menu a:hover {
  background-color: #16213e;
  color: #ff9800;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* استجابة للشاشات الصغيرة */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    right: 15px;
  }
}
