/* ✅ تحميل خط الجزيرة */
@font-face{
  font-family:'Aljazeera';
  src:url('/ads/fonts/aljazeera.ttf') format('truetype');
  font-weight:normal;
  font-style:normal;
}

/* ✅ Reset */
*{
  font-family:"Tajawal",'Aljazeera',Arial,sans-serif;
  margin:0;
  padding:0;
  box-sizing:border-box;
  direction:rtl;
  text-decoration:none;
}

html, body{
  height:100%;
}

/* ✅ Body: عمود + الفوتر يثبت بأسفل */
body{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  background:#f5f5f5;
  overflow-x:hidden;
}

/* ✅ لو تستخدم .container في أغلب الصفحات خله يتمدد */
.container{
  width:100%;
  max-width:100%;
  margin:0;
  flex: 1 0 auto;   /* يتمدد */
  display:flex;
  flex-direction:column;
}

/* ✅ أهم سطر: يثبت الفوتر في أسفل الصفحة مهما كان المحتوى */
footer{
  margin-top:auto;
}

.header_a{color:#fff;}

/* ميديا */
@media (max-width: 371px) {
  .site-name { font-size: 20px; }
  .logo img { height: 65px; }
}
