/* animations.css */
/* --- ANIMACJE --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main {
  animation: fadeInUp 0.6s var(--ease);
}

.postulat-box, .tapeta-box {
  animation: fadeInUp 0.6s var(--ease) both;
}

/* Stagger animation for multiple items */
.postulaty-container .postulat-box:nth-child(1) { animation-delay: 0.1s; }
.postulaty-container .postulat-box:nth-child(2) { animation-delay: 0.2s; }
.postulaty-container .postulat-box:nth-child(3) { animation-delay: 0.3s; }
.postulaty-container .postulat-box:nth-child(4) { animation-delay: 0.4s; }
.postulaty-container .postulat-box:nth-child(5) { animation-delay: 0.5s; }
.postulaty-container .postulat-box:nth-child(6) { animation-delay: 0.6s; }
.postulaty-container .postulat-box:nth-child(7) { animation-delay: 0.7s; }
.postulaty-container .postulat-box:nth-child(8) { animation-delay: 0.8s; }
.postulaty-container .postulat-box:nth-child(9) { animation-delay: 0.9s; }

.tapety-container .tapeta-box:nth-child(1) { animation-delay: 0.1s; }
.tapety-container .tapeta-box:nth-child(2) { animation-delay: 0.2s; }
.tapety-container .tapeta-box:nth-child(3) { animation-delay: 0.3s; }
.tapety-container .tapeta-box:nth-child(4) { animation-delay: 0.4s; }
.tapety-container .tapeta-box:nth-child(5) { animation-delay: 0.5s; }
.tapety-container .tapeta-box:nth-child(6) { animation-delay: 0.6s; }
.tapety-container .tapeta-box:nth-child(8) { animation-delay: 0.8s; }