/* ==========================================================================
   IRON OAK STUDIO — RESTRAINED ANIMATIONS & MOTION
   ========================================================================== */

/* Fade-in & Fade-up Scroll Reveal */
.fade-in-up {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.7s var(--ease-out-smooth), transform 0.7s var(--ease-out-smooth);
  will-change: opacity, transform;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Stagger Delay Utilities */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Subtle Text Reveal */
.reveal-text {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out-smooth), transform 0.6s var(--ease-out-smooth);
}

.reveal-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image Scale Hover Effects */
.zoom-on-hover {
  overflow: hidden;
}

.zoom-on-hover img {
  transition: transform 0.6s var(--ease-out-smooth);
}

.zoom-on-hover:hover img {
  transform: scale(1.04);
}

/* PREFERS REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in-up,
  .reveal-text {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-browser-composition {
    transform: none !important;
  }
}
