/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 19 2026 | 10:27:20 */
/* ---- Page transition overlay ---- */
#page-transition {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  pointer-events: none;
}

#page-transition .bar {
  flex: 1;
  background: #e0e0e0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

#page-transition .bar:nth-child(2) { transition-delay: 0.05s; }
#page-transition .bar:nth-child(3) { transition-delay: 0.10s; }
#page-transition .bar:nth-child(4) { transition-delay: 0.15s; }
#page-transition .bar:nth-child(5) { transition-delay: 0.20s; }

#page-transition .loading-text {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #191919;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 100000;
  white-space: nowrap;
}


@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body {
  animation: pageFadeIn 0.4s ease 0.4s both;
}