/* WardLink Web Loading Styles */
body {
  background-color: #FAFAFA; /* AppColors.bgLight */
  margin: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #121212; /* AppColors.bgDark */
  }
}

/* Centered Loading Container */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  opacity: 1;
  transition: opacity 0.4s ease-out;
}

/* Logo Animation - Breathing Light */
.logo {
  width: 80px;
  height: 80px;
  margin-bottom: 0; /* Removed margin as spinner is gone */
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.2s forwards, breathe 3s ease-in-out 1s infinite;
}

/* Spinner Removed */

/* Animations */
@keyframes breathe {
  0% { transform: scale(1); filter: brightness(100%); }
  50% { transform: scale(1.05); filter: brightness(140%); }
  100% { transform: scale(1); filter: brightness(100%); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Font Optimization */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/assets/fonts/Inter/Inter-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/assets/fonts/Inter/Inter-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/assets/fonts/Inter/Inter-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/assets/fonts/Inter/Inter-Bold.ttf') format('truetype');
}
