/*
Svg Projects
Author: Jonathan Trancozo
Language: HTML, CSS3 and SVG
*/


#deadline {
  width:581px;
  max-width: 100%;
  height:158px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#deadline svg {
  width: 100%;
}

#progress-time-fill {
  animation-name: progress-fill; 
  animation-timing-function: linear; 
  animation-iteration-count: infinite;
}

/* Death */
#death-group {
  animation-name: walk;
  animation-timing-function: ease; 
  animation-iteration-count: infinite;
  transform: translateX(0);
}

#death-arm {
  animation: move-arm 3s ease infinite;
  /* transform-origin: left center; */
  transform-origin: -60px 74px;
}

#death-tool {
  animation: move-tool 3s ease infinite;
  transform-origin: -48px center;
}

/* Designer */

#designer-arm-grop {
  animation: write 1.5s ease infinite;
  transform: translate(0, 0) rotate(0deg) scale(1, 1);
  transform-origin: 90% top;
}

.deadline-days {
  color: #fff;
  text-align: center;
  width: 100px;
  margin: 0 auto;
  position: relative;
  height: 20px;
  font-family: 'Oswald', sans-serif;
}

.deadline-days .inner {
  width: 100px;
  position: relative;
  top: 0;
  left: 0;
}

.mask-red,
.mask-white {
  position: absolute;
  top: 0;
  width: 100%;
  overflow: hidden;
  height: 100%;
}

.mask-red {
  left: 0;
  width: 0;
  color: #BE002A;
  animation: text-red ease infinite;
  z-index: 2;
  background: #000;
}
.mask-white {
  right: 0;
}

/* Flames */

#red-flame {
  opacity: 0;
  animation: show-flames 20s ease infinite, red-flame 120ms ease infinite;
  transform-origin: center bottom;
}

#yellow-flame {
  opacity: 0;
  animation: show-flames 20s ease infinite, yellow-flame 120ms ease infinite;
  transform-origin: center bottom;
}

#white-flame {
  opacity: 0;
  animation: show-flames 20s ease infinite, red-flame 100ms ease infinite;
  transform-origin: center bottom;
}

@keyframes progress-fill {
  0% {
      x: -100%;
  }

  100% {
      x: -3%;
  }
}

@keyframes walk {
  0% {
      transform: translateX(0);
  }
  6% {
      transform: translateX(0);
  }
  10% {
      transform: translateX(100px);
  }

  15% {
      transform: translateX(140px);
  }

  25% {
      transform: translateX(170px);
  }

  35% {
      transform: translateX(220px);
  }

  45% {
      transform: translateX(280px);
  }

  55% {
      transform: translateX(340px);
  }

  65% {
      transform: translateX(370px);
  }

  75% {
      transform: translateX(430px);
  }

  85% {
      transform: translateX(460px);
  }

  100% {
      transform: translateX(520px);
  }
}

@keyframes move-arm {
  0% {
      transform: rotate(0);
  }

  5% {
      transform: rotate(0);
  }

  9% {
      transform: rotate(40deg);
  }

  80% {
      transform: rotate(0);
  }
}

@keyframes move-tool {
  0% {
      transform: rotate(0);
  }

  5% {
      transform: rotate(0);
  }

  9% {
      transform: rotate(50deg);
  }

  80% {
      transform: rotate(0);
  }
}

/* Design animations */

@keyframes write {
  0% {
      transform: translate(0, 0) rotate(0deg) scale(1, 1);
  }

  16% {
      transform: translate(0px, 0px) rotate(5deg) scale(0.8, 1);
  }

  32% {
      transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
  }

  48% {
      transform: translate(0px, 0px) rotate(6deg) scale(0.8, 1);
  }

  65% {
      transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
  }

  83% {
      transform: translate(0px, 0px) rotate(4deg) scale(0.8, 1);
  }
}

@keyframes text-red {
  0% {
      width: 0%;
  }

  100% {
      width: 98%;
  }
}

/* Flames */

/* @keyframes show-flames {
  0% {
      transform:  translateY(0);
  }
  74% {
      transform:  translateY(0);
  }
  80% {
      transform:  translateY(-30px);
  }
  97% {
      transform:  translateY(-30px);
  }
  100% {
      transform: translateY(0px);
  }
} */

@keyframes show-flames {
  0% {
      opacity: 0;
  }
  74% {
      opacity: 0;
  }
  80% {
      opacity: 1;
  }
  99% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}

@keyframes red-flame {
  0% {
      transform: translateY(-30px) scale(1, 1);
  }

  25% {
      transform: translateY(-30px) scale(1.1, 1.1);
  }

  75% {
      transform: translateY(-30px) scale(0.8, 0.7); 
  }

  100% {
      transform: translateY(-30px) scale(1, 1); 
  }
}

@keyframes yellow-flame {
  0% {
      transform: translateY(-30px) scale(0.8, 0.7);
  }

  50% {
      transform: translateY(-30px) scale(1.1, 1.2);
  }

  100% {
      transform: translateY(-30px) scale(1, 1);
  }
}

/* Fundo escuro que cobre a tela toda */
#loading-overlay {
    position: fixed; /* Fica fixo na tela */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Cor preta com 85% de opacidade */
    z-index: 999; /* Z-index alto para ficar sobre o conteúdo */
    display: none; /* Começa escondido */
}

/* Garante que a animação fique na frente do fundo escuro */
#deadline {
    z-index: 1000; /* Z-index maior que o do overlay */
}