/* MOTION — the old site had exactly one transition string, repeated everywhere:
   background/border/border-radius/box-shadow at .3s. Everything here extends it. */
:root{
  --dur-fast:150ms /* @kind other */;
  --dur-base:300ms /* @kind other */;   /* kaynak: tek geçiş süresi */
  --dur-slow:500ms /* @kind other */;
  --dur-ken-burns:10s /* @kind other */;   /* kaynak: Elementor ken-burns */
  --ease-standard:cubic-bezier(.4,0,.2,1); /* @kind other */
  --ease-out:cubic-bezier(0,0,.2,1); /* @kind other */
  --ease-in:cubic-bezier(.4,0,1,1); /* @kind other */
  --ease-linear:linear; /* @kind other */
  --transition-surface:background var(--dur-base) var(--ease-standard),border-color var(--dur-base) var(--ease-standard),box-shadow var(--dur-base) var(--ease-standard); /* @kind other */
  --transition-control:background-color var(--dur-base) var(--ease-standard),color var(--dur-base) var(--ease-standard),border-color var(--dur-base) var(--ease-standard); /* @kind other */
  --transition-nudge:transform var(--dur-base) var(--ease-out),opacity var(--dur-base) var(--ease-out); /* @kind other */
  --nudge-x:4px; /* @kind spacing */
  --press-scale:.985 /* @kind other */;
}
@media (prefers-reduced-motion:reduce){:root{
  --dur-fast:1ms /* @kind other */;
  --dur-base:1ms /* @kind other */;
  --dur-slow:1ms /* @kind other */;
  --nudge-x:0px; /* @kind spacing */
  --press-scale:1 /* @kind other */;
}}
