/**
 * Performance Optimizations
 * تحسينات الأداء
 */

/* GPU Acceleration for animated elements */
.hero-image,
.slide,
.card,
.gallery-item,
.stat-number {
  will-change: transform, opacity;
  transform: translateZ(0);
}

/* Optimize images */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Reduce repaints */
.site-header,
.progress-bar,
.scroll-to-top {
  will-change: transform, opacity;
}

/* Optimize transitions */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Reduce layout shifts */
.hero-image,
.brand-logo {
  aspect-ratio: attr(width) / attr(height);
}

/* Optimize scroll performance */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

