.section-title {
  margin: 0 0 28px;
  text-align: center;
  font-size: clamp(30px, 5.2vw, 44px);
  line-height: 1.2;
  background: linear-gradient(270deg, #b35400, #ff8800, #ffcc33, #b35400);
  background-size: 300% 300%;

  background-clip: text;           /* standard */
  -webkit-background-clip: text;   /* prefiks WebKit */
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 8px rgba(179, 84, 0, 0.6);
  animation: sectionGradient 7s ease-in-out infinite;
}


@keyframes sectionGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
