/* ============================================
   متجر العصام — صفحة "قريباً"
   ============================================ */

/* ====== المتغيّرات: كل الألوان بمكان واحد ======
   لتغيير ألوان الموقع كله، عدّل هون فقط.
   الألوان تقريبية من اللوجو — اسحب الدقيقة بأداة Color Picker */
:root {
  --navy:        #2A3B6E;  /* الكحلي — العناوين والنصوص */
  --blue:        #5B87E6;  /* الأزرق الفاتح — الأزرار والتمييز */
  --blue-dark:   #4A75D0;  /* الأزرق عند مرور الماوس */
  --blue-tint:   #EEF3FD;  /* أزرق باهت جداً — خلفية الشارة */
  --text-body:   #5A657E;  /* رمادي مزرق — النصوص العادية */
  --text-light:  #8892A6;  /* رمادي فاتح — النصوص الثانوية */
  --line:        #E3E8F0;  /* لون الخطوط والحدود */
  --bg:          #F5F7FA;  /* خلفية الصفحة */
  --white:       #FFFFFF;
}

/* ====== إعادة ضبط أساسية ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text-body);
  line-height: 1.7;

  /* توسيط البطاقة أفقياً وعمودياً */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

/* نص مخفي بصرياً — يقرأه محرّك البحث وقارئ الشاشة فقط */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ====== البطاقة البيضاء ====== */
.card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 56px 40px 32px;
  max-width: 520px;
  width: 100%;
  text-align: center;
}

/* ====== اللوجو ====== */
.logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 28px;
}

/* ====== شارة "قريباً" ====== */
.badge {
  display: flex;
  background-color: var(--blue-tint);
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;
  padding: 7px 22px;
  border-radius: 6px;
  margin-bottom: 20px;
  justify-content: center;
}

/* ====== النصوص ====== */
.tagline {
  color: var(--navy);
  font-size: 18px;
  font-weight: 500;
  max-width: 340px;
  margin: 0 auto 10px;
}

.note {
  color: var(--text-light);
  font-size: 15px;
  max-width: 340px;
  margin: 0 auto 32px;
}

/* ====== أزرار التواصل ====== */
.actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;   /* الأزرار تنزل تحت بعض على الشاشات الصغيرة */
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn svg {
  width: 19px;
  height: 19px;
}

/* الزر الرئيسي — اللون المميّز يظهر هنا فقط */
.btn-primary {
  background-color: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--blue-dark);
  transform: translateY(-2px);
}

/* الزر الثانوي — إطار فقط */
.btn-outline {
  background-color: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

/* ====== التذييل ====== */
.footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.socials {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
}

.socials a {
  color: var(--text-light);
  transition: color 0.2s ease;
}

.socials a:hover {
  color: var(--blue);
}

.socials svg {
  width: 21px;
  height: 21px;
  display: block;
}

.copyright {
  font-size: 13px;
  color: var(--text-light);
}

/* ====== الموبايل: شاشات أصغر من 480px ====== */
@media (max-width: 480px) {
  .card {
    padding: 40px 24px 28px;
    border-radius: 12px;
  }

  .logo {
    max-width: 230px;
  }

  .tagline {
    font-size: 16px;
  }

  /* الأزرار بعرض كامل على الموبايل */
  .actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }
}
