/* Sniper Photography — CSS base */

html { scroll-behavior: smooth; }
/* topbar (32px) + header (64px mobile / 80px desktop) */
body { padding-top: 96px; }
@media (min-width: 1024px) { body { padding-top: 112px; } }
:focus-visible { outline: 2px solid #fbbf24; outline-offset: 2px; }
img { max-width: 100%; height: auto; }
a { transition: color 0.15s ease; }

@keyframes bounce {
    0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
    50%       { transform: translateY(0);   animation-timing-function: cubic-bezier(0,0,0.2,1); }
}
.animate-bounce { animation: bounce 1.5s infinite; }

/* Lightbox */
[x-cloak] { display: none !important; }
