.call-to-action {
  animation: pulse 1.5s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 3;
  border: solid black 1px;
  font-family: 'Cormorant Garamond', serif !important;
  background-color: rgba(255, 193, 7, 0.89) !important;
  font-size: 20px;
  padding: 10px 20px;
  font-weight: bold;

}

.call-to-action:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
  /* glow effet jaune */
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.879);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
  }
}