/* Splash Screen Styles */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.splash-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  animation: pulse 2s infinite ease-in-out;
}

.splash-loader {
  display: flex;
  margin-top: 20px;
}

.splash-loader-dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #2563EB; /* Blue color to match your theme */
  border-radius: 50%;
  animation: loader-dot 1.4s infinite ease-in-out both;
}

.splash-loader-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.splash-loader-dot:nth-child(2) {
  animation-delay: -0.16s;
}

.splash-text {
  margin-top: 15px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: #2563EB;
  font-weight: 600;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(0.95);
  }
}

@keyframes loader-dot {
  0%, 80%, 100% { 
    transform: scale(0.8);
  }
  40% { 
    transform: scale(1.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .splash-logo, .splash-loader-dot {
    animation: none;
  }
}
