/*---------------- شعار المرج (يستبدل الشعار الافتراضي) ----------------*/

/* إخفاء صورة الشعار الأصلية من الثيم */
.navbar-brand img {
  display: none !important;
}

/* استبدالها بشعار مخصص عبر ::before */
.navbar-brand {
  position: relative;
  display: inline-block;
  width: auto;
  height: 90px;
}

.navbar-brand::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 90px;
  background-image: url('https://files.oaiusercontent.com/file_00000000cde062068bf25a62d8f73f49');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 0 4px rgba(217,168,65,0.6));
  animation: pulsate-bck 2.5s ease-in-out infinite;
}

/* حركة نبض خفيفة تعطي فخامة */
@keyframes pulsate-bck {
  0% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(0.95); }
  100% { transform: translateX(-50%) scale(1); }
}

/* تناسب الشعار مع الهواتف */
@media (max-width: 768px) {
  .navbar-brand {
    height: 70px;
  }
  .navbar-brand::before {
    width: 120px;
    height: 70px;
  }
}