/* LOADER OVERLAY */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f5f5dc; /* Light beige background */
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.loading {
  overflow: hidden;
}

body.loading > *:not(#loader-wrapper) {
  visibility: hidden;
}

.loader-content {
  position: relative;
  width: 100px;
  height: 100px;
}

.loader-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://laiterietassili.com/images/favicon.ico');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}

.loader-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://laiterietassili.com/images/favicon.ico');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
  animation: fillIcon 2s ease-in-out forwards;
  filter: brightness(1.2) saturate(1.5);
}

@keyframes fillIcon {
  0% {
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}