﻿/* الأساس */
html, body {
    height: 100%;
    margin: 0;
}
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg,#fde2e4,#fad2e1,#c5d9f3,#f8edeb);
    min-height: 100vh;                 /* موجود عندك، نبقيه */
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    display: flex;                      /* جديد: نخلي الصفحة عمود مرن */
    flex-direction: column;             /* جديد */
}

/* يدفع المحتوى لملء المساحة حتى يهبط الفوتر للأسفل */
#pageContent {
    flex: 1;                            /* جديد: هذا أهم سطر */
    display: flex;
    justify-content: center;
}

/* الهيدر (كمبيوتر) — دمجنا التعريفين المكررين */
.navbar-custom {
    background: linear-gradient(90deg,#4b2c5e,#f08fc0);
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.navbar-custom .navbar-brand {
    color: #fff;
    font-weight: bold;
}
.navbar-custom .nav-link {
    color: #fff !important;
    font-weight: 500;
    transition: color .2s;
}
.navbar-custom .nav-link:hover {
    color: #ffe4f2 !important;
}
.navbar-toggler {
    border: none;
    color: #fff;
    font-size: 1.75rem;
    background: transparent;
    padding: .25rem .5rem;
    border-radius: .25rem;
}
.navbar-toggler:hover {
    background: #fff;
    color: #4b2c5e;
}

/* روابط الكمبيوتر — مسافات وحالة hover أجمل */
.navbar-desktop .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: .5rem 1rem;
    margin-inline: .3rem;
    border-radius: 8px;
    transition: background-color .3s ease, color .3s ease, transform .15s ease;
}
.navbar-desktop .nav-link:hover {
    background-color: rgba(255,255,255,.15);
    color: #ffe4f2 !important;
    transform: translateY(-1px);
}

/* Offcanvas للجوال */
.offcanvas-custom {
    background: linear-gradient(135deg,#2c2c54,#706fd3);
    color: #fff;
}

/* أزرار قائمة الجوال */
#mobileMenu .nav-link {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border: 1.6px solid #fff;
    background: transparent;
    color: #fff !important;
    text-align: center;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    box-shadow: 0 1px 6px rgba(0,0,0,.12);
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}
#mobileMenu .nav-link i { opacity: .95; }
#mobileMenu .nav-link:hover, #mobileMenu .nav-link:focus {
    transform: translateY(-1.5px);
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
    background: rgba(255,255,255,.12);
    color: #fff !important;
    text-decoration: none;
}
#mobileMenu .nav-link:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0,0,0,.16);
}

/* المحتوى */
.content-box {
    background: rgba(255,255,255,.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,.1);
    margin: 10px auto;
    max-width: 100%;
}

/* أزرار عامة */
.btn-link {
    display: inline-block;
    margin: 10px;
    padding: 12px 20px;
    background: #10a37f;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background .2s;
}
.btn-link:hover { background: #0e8f70; }

/* الفوتر — يبقى تحت دائماً */
.footer {
    margin-top: auto;                   /* يضمن بقاءه أسفل */
    background: #1f1f2e;                /* يصلح التباين مع الخلفية */
    color: #fff;
    padding: 16px 0;
    box-shadow: 0 -4px 12px rgba(0,0,0,.1);
    border-top: 3px solid rgba(240,143,192,.35); /* لمسة من ألوان الهيدر */
}
.footer a {
    color: #ffe4f2;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}



/* بطاقة زجاجية راقية */
.program-card{
  max-width: 920px;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 1.25rem;
}

/* تدرّج العنوان ليتماشى مع الهيدر */
.program-card__header{
  background: linear-gradient(90deg,#4b2c5e,#f08fc0);
  padding: 18px 24px;
  position: relative;
}
.program-card__header::after{
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 10px;
  background: linear-gradient(90deg,rgba(75,44,94,.18),rgba(240,143,192,.18));
  filter: blur(8px);
}

/* الخطوات - تايملاين RTL */
.timeline{ margin: 0; padding: 0; }
.timeline-item{
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: .75rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.timeline-item:last-child{ border-bottom: 0; }

.timeline-icon{
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: linear-gradient(135deg,#f3d0ea,#d7c7f9);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  flex-shrink: 0;
}
.timeline-icon i{ font-size: 1.1rem; color: #4b2c5e; opacity:.95; }

.timeline-content{
  color:#333; line-height: 1.9;
}

/* زر الدعوة للعمل */
.program-cta{
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(16,163,127,.25);
  transition: transform .15s ease, box-shadow .15s ease;
}
.program-cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(16,163,127,.35);
}

/* تحسينات صغيرة للشاشات الصغيرة */
@media (max-width: 576px){
  .program-card__body{ padding: 1.25rem 1rem; }
  .timeline-item{ grid-template-columns: 36px 1fr; }
  .timeline-icon{ width: 36px; height: 36px; border-radius: 10px; }
}
