/* خلفية الموقع */
body {
  background: url("images/background.jpg") no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  font-family: 'Cairo', sans-serif;
}

/* زر كيف تطلب */
.how-to-order-container {
  position: fixed;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1000;
}

.how-to-order {
  background-color: #007bff;
  color: white;
  padding: 6px 12px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.how-to-order:hover {
  background-color: #0056b3;
}

.how-to-order .icon {
  font-size: 18px;
  font-weight: bold;
  background: white;
  color: #007bff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* أيقونة القائمة */
.menu-container {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  z-index: 1000;
  gap: 10px;
}

.menu-icon {
  background-color: #343a40;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.popup-menu {
  position: fixed;
  top: 60px;
  right: 10px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.popup-menu a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.2s;
}

.popup-menu a:hover {
  background-color: #f0f0f0;
}

/* تخصيص زر الرئيسية في القائمة */
.popup-menu a:first-child {
  background-color: #E63946;
  color: #fff;
}

/* الشعار */
.logo-center {
  display: block;
  margin: 0 auto;
  width: 300px;
  height: auto;
}

/* العنوان */
.site-title {
  text-align: center;
  color: #333;
}

/* أزرار الصفحة */
.circle-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.circle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  font-weight: bold;
  color: white;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

/* زر الرئيسية */
.circle-button:first-child {
  background-color: #E63946;
}

/* بقية الأزرار */
.circle-button:not(:first-child) {
  background-color: #AED9FC;
  color: #003366;
}

.circle-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* من نحن */
.about-section {
  text-align: center;
  margin: 30px 0;
}

.about-button {
  padding: 10px 20px;
  border: none;
  background-color: #007bff;
  color: white;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}

.about-button:hover {
  background-color: #0056b3;
}

.about-text {
  margin-top: 20px;
  padding: 0 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.hidden {
  display: none;
}

/* الفوتر */
.footer {
  text-align: center;
  padding: 20px;
  color: #fff;
  background: rgba(0,0,0,0.6);
  margin-top: 50px;
}