
body {
  font-family: Arial, sans-serif;
  margin: 40px;
}

nav {
  background-color: #007BFF;
}

/* القائمة الأساسية */
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.menu li {
  position: relative;
}

.menu li a {
  display: block;
  padding: 14px 16px;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s;
}

.menu li a:hover {
  background-color: #0056b3;
}

/* القائمة المنسدلة */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: white;
  background-color: #000;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.dropdown-content a:hover {
  background-color: #007BFF;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* العناوين */
h1 {
  color: #007BFF;
}

/* الفوتر */
footer {
  margin-top: 50px;
  font-size: 14px;
  color: #666;
}

/* النماذج */
label {
  display: block;
  margin: 10px 0 5px;
}

input, select, textarea {
  padding: 8px;
  width: 300px;
  margin-bottom: 10px;
}

button {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

/* الزر الخاص بالقائمة في الهواتف */
.menu-toggle {
  display: none;
}

/* تصميم للجوال */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .menu.show {
    display: flex;
  }

  .menu li {
    width: 100%;
  }

  .menu-toggle {
    display: block;
    background-color: #007BFF;
    color: white;
    padding: 14px;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    margin-bottom: 10px;
  }
}
