/*
 * ARABIC.CSS
 * خصائص خاصة بالنسخة العربية (header / archive alignment / ... إلخ)
 */

/* Arabic header */
#theme-header {
  background: linear-gradient(to left, #e8230d, black);
  padding: 20px 0;
  width: 100%;
  position: relative;
  z-index: 1000;
}

/* Archive title & content (RTL) */
.archive-title {
  font-size: 40px;
  font-weight: bold;
  color: #b60000;
  text-align: right;
  margin-bottom: 30px;
}

.archive-content {
  padding: 15px;
  text-align: right;
}

/* Article footer + some RTL tweaks يمكن لو حاب تجعلها خاصة بالعربي */
body.layout-ar .article-footer {
  direction: rtl;
}

/* Example: يمكنك تضيف أي override خاص بالعربي هون */
body.layout-ar {
  direction: rtl;
  text-align: right;
}




/* لحظة بلحظة – حطيت الـ id اللي عندك */
#menu-item-205298 > a {
    position: relative;
    padding-right: 18px;   /* مساحة للنقطة من جهة اليمين */
}

/* النقطة البيضاء النابضة */
#menu-item-205298 > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: red;
    transform: translateY(-50%);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation-name: c961-menu-pulse;
    animation-duration: 1.7s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
}

@media screen and (max-width: 783px) {
    #menu-item-205298 > a::after {
  right:80px;  
}
 }

/* أنيميشن النبض */
@keyframes c961-menu-pulse {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: translateY(-50%) scale(2);
        opacity: 0;
        box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
    }
    100% {
        transform: translateY(-50%) scale(1);
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
