/* === Мягкий параллакс-эффект без искажений (iPhone-friendly) === */
body {
    background: url('images/bg.jpg') center/cover no-repeat;
    background-attachment: scroll; /* убирает растяжку на iOS */
    animation: slowMove 60s linear infinite alternate;
  }
  
  /* Лёгкое вертикальное движение */
  @keyframes slowMove {
    0%   { background-position: center top; }
    50%  { background-position: center bottom; }
    100% { background-position: center top; }
  }
  
  /* Оптимизация: отключаем на слабых устройствах */
  @media (prefers-reduced-motion: reduce) {
    body { animation: none; }
  }
  