/* ============================= */
/* Splash + Install Page Styles  */
/* ============================= */

/* Body & HTML - full screen handled by Bootstrap flex utilities */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #ffffff;
}

/* ===== Splash Page ===== */

.splash-page {
  overflow: hidden;
}

/* Container */
.splash-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
}

/* Logo animation */
.logo {
  width: 220px;
  height: 220px;
  opacity: 0;
  transform: scale(0.85);
  animation: logoIn 0.6s ease forwards;
  z-index: 2;
}

/* Expanding brand background */
.fade-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #1D4525;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: circleExpand 1s ease forwards;
  animation-delay: 0.5s;
}

/* Page fade out */
body.fade-out {
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Keyframes */
@keyframes logoIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes circleExpand {
  to {
    width: 2500px;
    height: 2500px;
  }
}

