/* Grūdas */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../images/grain.png"); /* jei turėsi */
  opacity: 0.05;
  pointer-events: none;
  z-index: 999;
}

/* Lėtas hover */
a, button {
  transition: color .2s ease, background .2s ease;
}

/* Švelnus fade-in (galėsi naudoti vėliau) */
.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
