@charset "UTF-8";
/* ======================================
   COMING SOON — CENTERED CLEAN LAYOUT
   With subtle animations
   ====================================== */
/* الصفحة كاملة */
.coming-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  padding: 32px 16px;
  color: #111827;
}

/* الحاوية الأساسية */
.coming-shell {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  animation: pageFadeIn 0.6s ease forwards;
}

/* اللوجو */
.coming-logo {
  width: 72px;
  margin: 0 auto 24px auto;
}

/* عنوان الشركة */
.coming-title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

/* الوصف القصير */
.coming-subtitle {
  font-size: 1rem;
  opacity: 0.75;
  margin-bottom: 40px;
}

/* العدّاد */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.countdown-item {
  padding: 18px 6px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(8px);
  animation: itemFadeUp 0.55s ease forwards;
}

/* تأخير بسيط بين العناصر */
.countdown-item:nth-child(1) {
  animation-delay: 0.05s;
}

.countdown-item:nth-child(2) {
  animation-delay: 0.1s;
}

.countdown-item:nth-child(3) {
  animation-delay: 0.15s;
}

.countdown-item:nth-child(4) {
  animation-delay: 0.2s;
}

.countdown-number {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.countdown-label {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* وصف المنصة */
.coming-description {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* زر الانتقال */
.coming-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 40px;
  border: 1px solid #111827;
  color: #111827;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 48px;
}

.coming-cta:hover {
  background: #111827;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
}

/* الفوتر */
.coming-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
  font-size: 0.8rem;
  opacity: 0.7;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lang-switch {
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.lang-switch:hover {
  opacity: 0.6;
}

/* ============= Animations ============= */
@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes itemFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* موبايل */
@media (max-width: 600px) {
  .coming-title {
    font-size: 1.6rem;
  }
  .countdown {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .coming-footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}/*# sourceMappingURL=coming-style.css.map */