#logo-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f8f7f4; /* Change to match your site background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity .6s ease;
}

#logo-preloader img {
  width: 220px; /* adjust size as needed */
  opacity: 0;
  animation: fadeIn 1s ease forwards, fadeOut 1s ease forwards 1.5s;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeOut {
  to { opacity: 0; }
}
