/* خلفية نيون متحركة */
body {
  font-family: Arial, sans-serif;
  direction: rtl;
  margin: 0;
  padding: 0;
  background: linear-gradient(270deg, #0ff, #00f, #f0f, #ff0, #0f0);
  background-size: 800% 800%;
  animation: moveBg 15s ease infinite;
}

@keyframes moveBg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

header {
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 15px;
  text-align: center;
}
header img {
  height: 40px;
  vertical-align: middle;
  margin-left: 10px;
}
header h1 {
  display: inline;
  font-size: 22px;
}

/* القائمة */
.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 20px auto;
  max-width: 1000px;
  padding: 0 10px;
}
.menu-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin: 30px 0 20px 0;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  letter-spacing: 3px;
}

.item {
  background: rgba(255,255,255,0.9);
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 10px;
  width: 220px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);

  /* الإضافة */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 280px;  /* قللتها بدل 330px */
}

.item h3 {
  font-weight: bold;   /* الخط سميك */
  font-size: 18px;     /* ممكن تكبره أو تصغره حسب ذوقك */
  margin: 10px 0;
}

.item img {
  width: 100%;
  height: 150px;   /* طول ثابت */
  object-fit: cover;
  border-radius: 10px;
}


button {
  margin-top: 10px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: #28a745;
  color: white;
  font-size: 20px;
  width: 100%;
}
button:hover {
  background: #218838;
}
.price {
  font-weight: bold;
  font-size: 20px;
  color: #000; /* تقدر تغير اللون حسب ذوقك */
}

/* Popup Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);

  /* الجديد */
  overflow-y: auto; /* يخلي الاسكرول جوه المودال */
}

.modal-content {
  background: white;
  margin: 5% auto;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;

  /* الجديد */
  max-height: 90vh;  /* علشان ما يخرجش بره الشاشة */
  overflow-y: auto;  /* لو المحتوى طويل، يعمل Scroll جوه */
}


.modal-content img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
  margin-top: 25px; /* دي اللي هتنزل الصورة لتحت */
}

.close {
  position: absolute;
  top: 12px;
  right: 15px;           /* نحطها في الركن اليمين فوق */
  width: 35px;
  height: 35px;
  background: rgba(0,0,0,0.6); /* دايرة شفافة */
  color: #fff;           /* اللون أبيض */
  border-radius: 50%;    /* دايرة */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;       /* حجم العلامة */
  cursor: pointer;
  transition: 0.3s;
  z-index: 2000;         /* فوق كل العناصر */
}

.close:hover {
  background: rgba(255,0,0,0.8); /* عند المرور تبقى حمراء */
  color: #fff;
}

.order-btn {
  background: #007bff;
  margin-top: 10px;
  width: 100%;
}

/* Footer */
footer {
  background: rgba(0,0,0,0.9);
  color: #fff;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
}
footer a {
  margin: 0 15px;
  color: #fff;
  font-size: 28px;   /* حجم الأيقونات */
  transition: all 0.3s ease; /* حركة ناعمة */
}

footer a:hover {
  transform: scale(1.3); /* تكبير عند الهوفر */
}

/* ألوان خاصة لكل أيقونة */
footer a .fa-instagram { color: #E1306C; }
footer a .fa-facebook { color: #1877F2; }
footer a .fa-tiktok { color: 	#FFFFFF; }
footer a .fa-whatsapp { color: #25D366; }





