/* marquee.css: Animación horizontal de texto moderna sin etiquetas obsoletas */

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #2C790B;
  /* Color representativo de 820 Tree Service */
  color: #ffffff;
  padding: 10px 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-animation 40s linear infinite;
  font-size: 16px;
  font-weight: bold;
}

@keyframes marquee-animation {
  0% {
    transform: translateX(100vw);
  }

  100% {
    transform: translateX(-100%);
  }
}

.marquee-container:hover .marquee {
  animation-play-state: paused;
}

/* Estilos para los enlaces dentro del marquee */
.marquee a {
  color: #FFD700;
  /* Gold color for links */
  text-decoration: underline;
  margin-right: 20px;
}

.marquee strong {
  color: #ffffff;
  margin-right: 15px;
}