* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Tajawal", sans-serif;
    }

    body {
      background: #f8f8f8;
    }

    /* الشريط العلوي */
    .navbar {
      position: fixed;
      top: 0;

      right: 0;
      left: 0;
      height: 100px;
      background: #ffffff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }

    /* الشعار */
    .navbar img {
      height: 100px;
    
      border-radius: 50px;
      object-fit: contain;
    }

    /* أيقونة القائمة */
    .menu-icon {
      position: absolute;
      right: 20px;
      width: 30px;
      height: 25px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    /* الخطوط الثلاث */
    .menu-icon span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: #613636;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    /* حالة التحول إلى × */
    .menu-icon.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 6px);
    }

    .menu-icon.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-icon.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -6px);
    }

    /* القائمة الجانبية */
    .sidebar {
      position: fixed;
      top: 0;
      right: -250px;
      width: 250px;
      height: 100%;
      background: #6d4242;
      box-shadow: -2px 0 10px rgba(92, 62, 62, 0.1);
      transition: right 0.3s ease;
      z-index: 999;
      padding-top: 100px;
    }

    .sidebar.active {
      right: 0;
    }

    .sidebar ul {
      list-style: none;
    }

    .sidebar ul li {
      border-bottom: 1px solid #eee;
    }

    .sidebar ul li a {
      display: block;
      padding: 15px 20px;
      text-decoration: none;
      color: #ffffff;
      font-size: 18px;
      transition: background 0.3s;
    }

    .sidebar ul li a:hover {
      background: #f2f2f2;
    }

    /* الخلفية عند فتح القائمة */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:  #f2f2f2a6;
      display: none;
      z-index: 998;
    }

    .overlay.active {
      display: block;
    }
    /* ===== المحتوى الرئيسي ===== */
.hero {
  min-width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 30px 20px;
  background: rgb(255, 251, 226);
  animation: fadeIn 1s ease-in-out;
}

.hero h1 {
  font-size: 1.5rem;
  color: #9b4d03;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s ease forwards;
}

.hero p {
  font-size: 0.9rem;
  color: #790404;
  margin: 15px 0 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s ease forwards;
  animation-delay: 0.3s;
}

.hero button  {
  background: #000000;
  color: #fff;
  border: none;
  padding: 12px 30px ;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s ease forwards;
  animation-delay: 0.6s;
  transition: background 0.3s;
}
.hero-buttons{
  display: flex;
  gap: 12px; /* مسافة خفيفة بينهم */
  justify-content: center; /* أو flex-start لو تبيهم يمين */
}

.hero button:hover {
  background: #fff4f4;
}


/* ===== الأنيميشن ===== */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.img-1 {
    width: 100%;
}

/* ===== قسم العنوان والنص ===== */
.info-section {
  text-align: center;
  padding: 8px 5px;
  background: #fff;
}

.info-section h2 {
  font-size: 1.5rem;
  color: #914f4f;
  margin-bottom: 15px;
  animation: slideUp 1s ease forwards;
}

.info-section p {
  font-size: 1rem;
  color: #b68686;
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.8;
  animation: slideUp 1s ease forwards;
  animation-delay: 0.3s;
}

/* ===== قسم الوجبات ===== */
.meals {
  background: #fff;
  text-align: center;
  padding: 60px 20px;
}

.meal {
  margin-bottom: 60px;
}

.meal h2 {
  color: #a13c3c; /* أحمر باهت */
  font-size: 1.8rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.meal img {
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.meal p {
  color: #a13c3c;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.meal button {
  background: transparent;
  border: 1.5px solid #a13c3c;
  color: #a13c3c;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.meal button:hover {
  background: #a13c3c;
  color: #fff;
}

/* أنيميشن خفيف عند ظهور العناصر */
.meal {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.meal:nth-child(1) { animation-delay: 0.2s; }
.meal:nth-child(2) { animation-delay: 0.4s; }
.meal:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-section {
  background: linear-gradient(180deg, #f6f2ee 0%, #fffaf7 100%);
  padding: 80px 20px;
  text-align: center;
  direction: rtl;
}

.section-title {
  color: #b22e2b;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.subtitle {
  color: #7a5049;
  font-size: 18px;
  margin-bottom: 50px;
}

.contact-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.contact-card {
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 18px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 260px;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-card i {
  font-size: 28px;
  color: #b22e2b;
  margin-bottom: 10px;
}

.contact-card a {
  text-decoration: none;
  color: #422d29;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.06);
}

.form-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #b22e2b;
  background: transparent;
  padding: 12px;
  font-size: 16px;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8e241f;
}

.contact-form textarea {
  resize: none;
  height: 120px;
  margin-top: 10px;
}

.contact-form button {
  margin-top: 20px;
  background-color: #b22e2b;
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.contact-form button:hover {
  background-color: #8e241f;
  transform: translateY(-3px);
}

@media (max-width: 600px) {
  .contact-card {
    width: 100%;
  }

  .contact-form {
    padding: 25px;
  }

  .section-title {
    font-size: 24px;
  }
}
/* ====== إعدادات أساسية ====== */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');



/* ====== قسم ساعات العمل ====== */
.work-section {
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f9f6f3);
  padding: 90px 25px 70px;
  direction: rtl;
  border-top: 4px solid #5f3736;
  border-radius: 40px 40px 0 0;
  max-width: 1100px;
  margin: 100px auto 0;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  animation: fadeUp 1.4s ease;
}

.work-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 6px;
  background: linear-gradient(90deg, #b22e2b, #d1453d, #b22e2b);
  animation: shine 6s linear infinite;
}

@keyframes shine {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

.work-section h3 {
  color: #b22e2b;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 6px rgba(178,46,43,0.25);
  animation: fadeDown 1.2s ease;
}

.work-section .type {
  color: #7a5049;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 17px;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.3s forwards;
}

.work-section p {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.9;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.4s forwards;
}

.apps-title {
  color: #b22e2b;
  font-size: 20px;
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.6s forwards;
}

/* ====== التطبيقات ====== */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 30px;
  margin: 0 auto 60px;
  max-width: 700px;
}

.apps-grid a {
  text-decoration: none;
  color: #422d29;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 20px 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
  animation: fadeUp 1.3s ease forwards;
}

.apps-grid a:nth-child(1){ animation-delay: 0.6s; }
.apps-grid a:nth-child(2){ animation-delay: 0.7s; }
.apps-grid a:nth-child(3){ animation-delay: 0.8s; }
.apps-grid a:nth-child(4){ animation-delay: 0.9s; }
.apps-grid a:nth-child(5){ animation-delay: 1s; }
.apps-grid a:nth-child(6){ animation-delay: 1.1s; }

.apps-grid a:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 6px 18px rgba(178,46,43,0.25);
  background: linear-gradient(180deg, #fff7f7, #ffffff);
}

.apps-grid img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  border-radius: 12px;
  object-fit: contain;
  background: white;
  padding: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* ====== السوشيال ====== */
.social-footer {
  background: #ffffff00;
  margin-top: 40px;
  opacity: 0;
  animation: fadeUp 1.2s ease 1.3s forwards;
  position: relative;
}

/* ظل من فوق */
.social-footer::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 25px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.12), rgba(0,0,0,0));
  pointer-events: none;
}

.social-footer p {
  margin: 4px 0;
  color: #6e3b35; /* مناسب ومتماشي مع theme */
  font-size: 15px;
}

.social-footer {
  background: #ffffff00;
  margin-top: 40px;
  opacity: 0;
  animation: fadeUp 1.2s ease 1.3s forwards;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.social-icons a {
  color: #b22e2b;
  font-size: 22px;
  background: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 6px rgba(0,0,0,0.12), 0 3px 8px rgba(178,46,43,0.3); /* <<< ظل من فوق و من تحت */
  transition: all 0.4s ease;
}


.social-icons a:hover {
  transform: scale(1.2) rotate(5deg);
  color: #fff;
  background: linear-gradient(145deg, #b22e2b, #d14a44);
  box-shadow: 0 6px 14px rgba(178,46,43,0.4);
}

.social-footer p {
  margin: 4px 0;
  color: #7a5049;
  font-size: 15px;
}

/* ====== الفوتر السفلي ====== */
.footer-bottom {
  background: linear-gradient(90deg, #973b3a, #992320);
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  font-size: 14px;
  line-height: 1.8;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
  letter-spacing: 0.3px;
  animation: fadeUp 1.4s ease 1.5s;
}

.footer-bottom .dev a {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-bottom .dev a:hover {
  color: #ffeaea;
}

/* ====== الحركات ====== */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  0% { opacity: 0; transform: translateY(-25px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ====== موبايل ====== */
@media (max-width: 600px) {
  .work-section {
    padding: 60px 15px 40px;
    margin-top: 50px;
  }
  .apps-grid {
    gap: 20px;
  }
  .apps-grid img {
    width: 55px;
    height: 55px;
  }
}

/* ======  المنيو ====== */
.menu-bar {
  padding-top: 101px;
  width: 100%;
  background-color: #f8f8f8;
  border-bottom: 2px solid #ccc;
  overflow-x: auto; /* يسمح بالتحريك اليدوي */
  white-space: nowrap;
}
.menu-bar ul {
  display: flex;
  list-style: none;
  padding: 10px 0;
  margin: 0;
}
.menu-bar li {
  margin: 0 30px;
  font-size: 18px;
  cursor: pointer;
  white-space: nowrap;
}

.coming-modal{
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.5);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.modal-box{
  background:#fff;
  padding:30px 25px;
  border-radius:18px;
  font-size:22px;
  font-family:'Tajawal', sans-serif;
  animation: fadeIn .3s ease;
  text-align:center;
  box-shadow:0 6px 25px rgba(0,0,0,0.15);
}

.modal-box button{
  margin-top:20px;
  padding:10px 25px;
  border:none;
  background:#000;
  color:#fff;
  border-radius:8px;
  cursor:pointer;
  font-size:18px;
}

@keyframes fadeIn{
  from{ transform:scale(.8); opacity:.3 }
  to{ transform:scale(1); opacity:1 }
}



.fixed-btn{
  position: fixed;
  bottom: 23px;
  right: 23px;
  padding: 13px 18px;
  background: #00A884;
  color: #fff;
  border: none;
  border-radius: 45px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  transition: transform .25s ease, box-shadow .25s ease;
}

.fixed-btn:hover{
  transform: scale(1.10);
  box-shadow: 0 6px 25px rgba(0,0,0,0.30);
}

.fixed-btn .txt{
  font-weight:600;
  font-size:17px;
}

