/* ===========================
   MOBILE PERFORMANCE OPTIMIZATIONS
   =========================== */

/* Reduce animations on mobile for better performance */
.mobile-optimized * {
  animation-duration: 0.2s !important;
  transition-duration: 0.2s !important;
}

.mobile-optimized .hero__animation {
  will-change: auto !important;
}

/* Reduce paint complexity */
.mobile-optimized .new-project-card {
  will-change: auto !important;
}

/* Optimize carousel for mobile */
@media (max-width: 768px) {
  .projects__carousel.carousel-active .projects__track {
    transition: transform 0.2s ease !important;
  }
}
