/* Splash Screen Styles */
/* This file is required by the build system to prevent warnings */

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f2f3f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.splash-screen img {
  width: 120px;
  height: auto;
  margin-bottom: 30px;
  animation: fadeIn 0.8s ease-in;
}

.splash-screen span {
  font-family: 'Cairo', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #5d78ff;
  text-align: center;
  animation: fadeIn 1s ease-in 0.3s both;
}

/* Animation for fade in effect */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hide splash screen when Angular loads */
.splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .splash-screen img {
    width: 100px;
  }
  
  .splash-screen span {
    font-size: 16px;
  }
}
