/* base.css — shared resets and reveal animations for all portfolio themes */

/* ── Scroll reveal ─────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside reveal-section */
.reveal-section .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-section .reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal-section .reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal-section .reveal:nth-child(4) { transition-delay: 0.18s; }
.reveal-section .reveal:nth-child(5) { transition-delay: 0.24s; }
.reveal-section .reveal:nth-child(6) { transition-delay: 0.30s; }
