/*--------------------------------------------------------------
# Loading Screen Styles
--------------------------------------------------------------*/
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.loading-content {
  text-align: center;
  color: #ff0000;
}

.loading-logo {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  animation: logoPulse 2s ease-in-out infinite;
  border: none;
  outline: none;
  box-shadow: none;
  filter: none;
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* إخفاء المحتوى الرئيسي أثناء التحميل */
body.loading #main-content {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/* إظهار المحتوى الرئيسي بعد التحميل */
body.loaded #main-content {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

/* تحسينات للشاشات الصغيرة */
@media (max-width: 768px) {
  .loading-logo {
    width: 140px;
  }
}

@media (max-width: 480px) {
  .loading-logo {
    width: 120px;
  }
}
