/* ── Horizon silhouette — castle & hills ────────────────────────────────────── */
/* Fragment: svg/horizon.svg                                                     */

#horizon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 12;
  animation: floatFar 8s ease-in-out infinite;
}

#horizon .birds {
  --xdisplay: none;
}

@keyframes floatFar {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-1px); }
}
