/* ===========================
   1. Font + variables
=========================== */
@font-face{
  font-family:'SFDroob';
  src: url('fonts/SFDroob.woff2') format('woff2');
  font-weight: 100 900; 
  font-display:swap;

}:root{
  --accent:#3498db;
  --dark:#222;
  --muted:#666;
  --card:#fff;
  --container:1200px;
  --nav-bg:#1f3a57;
  --nav-bg-2:#276b9a;
  --sidebar-bg:#f8f9fa;
}
/* ===========================
   6. Main content (تحديث أوزان العناوين)
=========================== */

/* 1. الوزن الأثقل للعناوين الرئيسية (H1) */
/* نستخدم 900 لإبراز الأهمية والقوة */
h1 {
    font-weight: 900; 
    line-height: 1.2;
    margin-bottom: 0.5em;
}

/* 2. وزن متوسط بارز للعناوين الفرعية (H2) */
/* نستخدم 700 للموازنة بين الجرأة وسهولة القراءة */
h2 {
    font-weight: 700; 
    line-height: 1.3;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
}

/* 3. وزن خفيف إلى متوسط للعناوين الداخلية (H3) */
/* نستخدم 500 للمحافظة على الوضوح دون المنافسة مع H1 و H2 */
h3 {
    font-weight: 500; 
    line-height: 1.4;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

/* 4. الفقرات والنصوص العادية */
p {
    /* الافتراضي 400، ولكن يمكن استخدام 300 أو 400 */
    font-weight: 400; 
    line-height: 1.7;
    margin-bottom: 1em;
}

/* يمكنك أيضاً تعريف أوزان خاصة للاستخدامات المختلفة */
.text-light {
    font-weight: 300; /* للنصوص الخفيفة أو الشروحات */
}

.text-extra-bold {
    font-weight: 800; /* للتأكيد الشديد */
}
/* ===========================
   2. Base reset
=========================== */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:'SFDroob', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--dark);
  background: linear-gradient(180deg,#f7f9fb,#eef3f7);
  -webkit-font-smoothing:antialiased;
}

/* helpers */
.visible{display:block}
.hidden{display:none !important}

/* ===========================
   3. Nav / header
=========================== */
nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 20px;
  background:linear-gradient(90deg,var(--nav-bg),var(--nav-bg-2));
  color:#fff;
  position:sticky;
  top:0;
  z-index:999;
}
nav .logo{color:#fff;text-decoration:none;font-weight:700;font-size:1.25rem}
.nav-controls{display:flex;gap:8px;align-items:center}
.lang-btn{
  background:rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.25);
  color:#fff;padding:6px 10px;border-radius:6px;cursor:pointer;font-weight:700;
}
.lang-btn.active{background:#fff;color:var(--nav-bg)}

/* ===========================
   4. Layout grid (desktop)
=========================== */
.page-wrapper{
  max-width:var(--container);
  margin:0 auto;
  padding:20px;
  display:grid;
  gap:40px;
  align-items:start;
  grid-template-columns:280px 1fr;
  align-items: flex-start;

}
#page-wrapper.ltr-layout{direction:ltr;grid-template-columns:280px 1fr}
#page-wrapper.rtl-layout{direction:rtl;grid-template-columns:1fr 280px}

/* ensure columns placement (kept minimal to not conflict) */
#page-wrapper aside{grid-column:1}
#page-wrapper main{grid-column:2}
#page-wrapper.rtl-layout aside{grid-column:2}
#page-wrapper.rtl-layout main{grid-column:1}

/* ===========================
   5. Sidebar / Accordion
=========================== */
#page-sidebar, aside{
  background:var(--sidebar-bg);
  padding:20px;
  border-radius:12px;
  border:1px solid #e1e5e9;
  box-shadow:0 2px 10px rgba(0,0,0,0.04);
  position:sticky;
  top:20px;
  z-index:30;
}

/* header style */
.accordion-header{
  background:#2c3e50;color:#fff;padding:10px;border-radius:8px;margin-bottom:6px;
  cursor:pointer;font-size:1.03rem;font-weight:700;display:flex;justify-content:space-between;align-items:center;
  transition:background .18s, transform .12s;
  user-select:none;
}
.accordion-header:hover{background:#34495e;transform:translateY(-1px)}
.accordion-header:after{content:"+";font-size:1.2rem;margin-left:8px}
.accordion-header.active:after{content:"\2212"}

/* article-list: closed by default; open via inline style set by JS for precise height */
.article-list{
  list-style:none;margin:0;padding:0;overflow:hidden;max-height:0;transition:max-height .28s ease;
}
.article-list.open{padding-top:6px}

.article-list li{margin-bottom:10px;border-left:3px solid transparent;transition:all .18s}
.article-list li:hover{border-left-color:var(--accent);background:#f1f8ff}
.article-list a{display:block;padding:10px;border-radius:6px;text-decoration:none;color:#2c3e50;font-weight:500}
.article-list a:hover{background:#e3f2fd;color:#1976d2}
.article-list a.active{background:#1976d2;color:#fff;font-weight:700}

/* ===========================
   6. Main content
=========================== */
main{background:transparent;padding:0}
.font-presentation{
  background:#fff;border-radius:15px;padding:20px;border:1px solid #eee;box-shadow:0 4px 15px rgba(0,0,0,0.04)
}

/* language blocks */
.content-en, .content-ar{display:none}
.content-en.visible, .content-ar.visible{display:block}

/* accessibility focus */
.accordion-header:focus{outline:3px solid rgba(52,152,219,0.22);outline-offset:2px}

/* ===========================
   7. Mobile adjustments
=========================== */
@media (max-width:800px){
  .page-wrapper{grid-template-columns:1fr;gap:0;padding:10px}
  /* make sidebar flow in document (so it won't cover content) */
  #page-sidebar, aside{position:static !important;margin-bottom:18px;padding:15px;order:1;grid-column:1 / -1}
  main{order:2;grid-column:1 / -1;margin-top:0}
  .article-list a{padding:12px;font-size:1rem}
  nav{padding:8px 12px}
}

/* end of file */

/* ===== Sidebar Layout ===== */
#page-sidebar {
    width: 260px;
    padding: 10px;
    border-right: 1px solid #ddd;
    background: #fafafa;
    position: sticky;
    top: 80px;
    height: fit-content;
}

/* في الجوال */
@media (max-width: 768px) {
    #page-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }
}


/* ===== Layout Fix: يجعل المقالات بجانب القائمة ===== */
.page-wrapper {
    display: flex;
    align-items: flex-start;
}

/* sidebar ثابت – لا يتم ضغطه */
#page-sidebar {
    flex: 0 0 260px;
}

/* المحتوى يأخذ باقي المساحة */
main {
    flex: 1;
}

/* في الجوال يعود كلٌّ إلى وضعه الطبيعي */
@media (max-width: 768px) {
    .page-wrapper {
        flex-direction: column;
    }

    #page-sidebar {
        width: 100%;
        flex: unset;
    }

    main {
        width: 100%;
    }
}
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
  position: relative;
}
.modal-content .close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 10px;
}
.modal-content[dir="rtl"] .close { 
  right: 10px; 
  left: auto; 
}
.modal-content[dir="ltr"] .close { 
  left: 10px; 
  right: auto; 
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
th, td {
  padding: 10px;
  border: 1px solid #ddd;
}
thead tr {
  background-color: #f2f2f2;
}

/* Payment Buttons */
.payment-buttons {
  text-align: center;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.payment-button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}

/* Animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* تحسينات للعربية */
[dir="rtl"] .Courses-list li {
  border-left: none;
  border-right: 3px solid transparent;
}

[dir="rtl"] .Courses-list li:hover {
  border-right-color: #3498db;
}

[dir="rtl"] .Courses-list a:hover {
  transform: translateX(-5px);
}

/* Responsive */
@media (max-width: 800px) {
  .page-wrapper {
      grid-template-columns: 1fr;
  }
  aside {
      position: static;
      margin-bottom: 20px;
  }
  
  .Courses-list a {
      padding: 12px 12px;
      font-size: 1rem;
      line-height: 1.7;
  }
  
  .Courses-list li {
      margin-bottom: 10px;
  }
}
.page-wrapper {
  display: flex;
  align-items: flex-start;
}

/* sidebar ثابت – لا يتم ضغطه */
#page-sidebar {
  flex: 0 0 260px;
}

/* المحتوى يأخذ باقي المساحة */
main {
  flex: 1;
}

/* في الجوال يعود كلٌّ إلى وضعه الطبيعي */
@media (max-width: 768px) {
  .page-wrapper {
      flex-direction: column;
  }

  #page-sidebar {
      width: 100%;
      flex: unset;
  }

  main {
      width: 100%;
  }
}
/* ====== Modal Style ====== */

.modal {
  display: none;               /* مخفي افتراضياً */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.55); /* خلفية شفافة */
  backdrop-filter: blur(3px);
}

.modal-content {
  background: #fff;
  margin: 8% auto;
  padding: 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 550px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease-out;
}

/* زر الإغلاق */
.close {
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

.close:hover {
  color: #c0392b;
}

/* أنيميشن بسيط */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* تحسين للهواتف */
@media (max-width: 600px) {
  .modal-content {
      width: 95%;
      margin-top: 20%;
      padding: 20px;
  }
}
/* ============================
 Modal (overlay & content)
 ============================ */

 .modal {
  display: none; /* مخفي افتراضياً */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

/* Container for modal content: centering + responsive width */
.modal-content {
  background-color: #fff;
  margin: 8% auto; /* من أعلى الصفحة */
  padding: 24px 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
  animation: modalFadeIn 0.25s ease-out;
  position: relative;
}

/* زر الإغلاق (×) */
.modal .close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.modal .close:hover {
  color: #c0392b;
}

/* Fade-in animation للـ modal-content */
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* عند الجوال: اجعل محتوى المودال أكبر وأشمل العرض */
@media (max-width: 600px) {
  .modal-content {
    width: 95%;
    margin: 12% auto;
    padding: 20px;
  }
}
/* 💡 القاعدة لضمان أن جميع الصور لا تتجاوز عرض القالب */
.section img,
.article-content img,
.blog-grid img,
.course-card img {
    /* 🎯 هذا يضمن أن الصورة لن تتجاوز أبداً عرض العنصر الذي يحتويها */
    max-width: 100%; 
    /* هذا يضمن أن الصورة يتم تقليصها إذا كانت أكبر من الحاوية */
    height: auto; 
    /* هذا يضمن أن الصورة لا تفقد جودتها إذا تم تكبيرها (لكنها هنا لن تكبر) */
    width: auto;
    
    /* إذا كانت الصورة داخل بطاقة، تأكد من أن البطاقة نفسها لا تمنع التدفق */
    display: block; 
}

/* يمكنك تطبيقها عالمياً على جميع الصور إذا لم تكن تتسبب في تعارض */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* تنسيق المحتوى عندما تكون الصفحة باللغة العربية (RTL) */
.rtl .article-content {
    /* تطبيق اتجاه القراءة من اليمين لليسار */
    direction: rtl; 
}

/* محاذاة النصوص والعناوين لليمين */
.rtl .article-content p,
.rtl .article-content h1,
.rtl .article-content h2,
.rtl .article-content ul,
.rtl .article-content ol {
    text-align: right;
}

/* تعديل حشوات القوائم لتبدأ من اليمين */
.rtl .article-content ul,
.rtl .article-content ol {
    padding-right: 20px; /* مسافة للرمز النقطي أو الرقم */
    padding-left: 0;     /* إزالة الحشوة من اليسار */
}