/*
Theme Name:   Infoteka Custom Theme
Theme URI:    https://wordpress.org/themes/twentytwentyfive/
Description:  Twenty Twenty-Five child theme
Author:       Infoteka
Template:     twentytwentyfive
Version:      1.0.0
Text Domain:  twentytwentyfivechild
*/

/* === Infoteka Preloader Overlay === */
.infoteka-preloader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: #ffffff;
  z-index: 9999;
  transition: opacity .4s ease, visibility .4s ease;
}

.infoteka-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

/* === Loader SVG === */
.infoteka-loader {
  width: 80px;
  height: 80px;
}

.infoteka-loader rect {
  fill: none;
  stroke: #fc9813;             /* Yellow-Orange */
  stroke-width: 5;
  stroke-linejoin: sharp;
  stroke-linecap: sharp;

  /* Stroke length: 320 total; 240 visible runner 80 is the gap */
  stroke-dasharray: 240 80;    
  stroke-dashoffset: 0;

  /* Animate clockwise movement */
  animation: infoteka-runner 2s linear infinite;
}

/* Runner animation */
@keyframes infoteka-runner {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -320; }
}

/* Accessibility: stop animation if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .infoteka-loader rect {
    animation: none;
  }
}