@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap");

body {
  font-family: "Google Sans", sans-serif;
}
/* Pure CSS mobile menu logic */
#menu-toggle:checked ~ .nav-container {
  max-height: 450px;
  opacity: 1;
  padding: 1.5rem;
}
#menu-toggle:checked ~ .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#menu-toggle:checked ~ .hamburger span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked ~ .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@keyframes fadeSlideshow {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  41% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes shimmer {
  100% {
    left: 125%;
  }
}

.animate-fade-slideshow {
  animation: fadeSlideshow 12s infinite ease-in-out;
}

/* Custom class modifier for layout performance optimization */
.object-bottom-right {
  object-position: bottom right;
}
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.animate-infinite-marquee {
  animation: marquee 25s linear infinite;
}

