/*
Theme Name: Lozdev Hello Elementor Child
Theme URI: https://www.lozdev-informatique.fr
Description: Thème enfant de Hello Elementor personnalisé par Lozdev Informatique
Author: Géraldine Juery - Lozdev Informatique
Author URI: https://www.lozdev-informatique.fr
Template: hello-elementor
Version: 1.0
Text Domain: lozdev-hello-elementor-child
*/


/* ===== Bouton animation Lozdev ===== */
.lozdev-btn-event {
    transition: all 0.25s ease;
}
.lozdev-btn-event:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

/* ===== Effet machine à écrire multi-ligne ===== */
.lozdev-typing {
  overflow: hidden;
  border-right: 2px solid #026679;
  display: inline-block;
  animation: typing-multi 3s steps(40, end), blink 0.8s infinite;
}

@keyframes typing-multi {
  from {
    max-height: 0;
  }
  to {
    max-height: 500px; /* suffisamment grand pour ton texte */
  }
}

@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: #026679; }
}