@import "https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap";

/* src/styles.css */
body {
  font-family: "Poppins", sans-serif;
}
:root {
  --primary: #2a577a;
  --primary-dark: #163A52;
  --primary-light: rgba(42, 87, 122, 0.1);
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --background: #FFFFFF;
  --surface: #F9FAFB;
  --border: #E5E7EB;
  --text-primary: #1F2937;
  --text-secondary: #4B5563;
  --text-white: #FFFFFF;
}
.splash-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      135deg,
      #1e3a5f 0%,
      #0f2b44 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease-in-out;
}
.splash-container.fade-out {
  opacity: 0;
}
.splash-content {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}
.logo-container {
  margin-bottom: 2rem;
}
.splash-logo {
  width: 120px;
  height: auto;
  animation: pulse 2s infinite;
}
.splash-logo-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}
.splash-loader {
  width: 250px;
  margin: 2rem auto;
}
.loader-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.loader-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 30%;
  background:
    linear-gradient(
      90deg,
      #10b981,
      #34d399);
  border-radius: 4px;
  animation: loading 1.5s infinite ease-in-out;
}
.splash-footer {
  margin-top: 3rem;
}
.made-by {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-family:
    "Segoe UI",
    Tahoma,
    Geneva,
    Verdana,
    sans-serif;
}
.made-by strong {
  color: #10b981;
  font-weight: 600;
  font-size: 1rem;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes loading {
  0% {
    left: -30%;
    width: 30%;
  }
  50% {
    left: 50%;
    width: 30%;
  }
  100% {
    left: 100%;
    width: 30%;
  }
}
@media (max-width: 768px) {
  .splash-logo {
    width: 80px;
  }
  .splash-logo-text {
    font-size: 1.8rem;
  }
  .splash-loader {
    width: 180px;
  }
  .made-by {
    font-size: 0.8rem;
  }
  .made-by strong {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .splash-logo-text {
    font-size: 1.5rem;
  }
  .splash-loader {
    width: 150px;
  }
}

/* angular:styles/global:styles */
