@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&display=swap');


/* Section principale */
.dohero-section {

  color: #1a0000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 6rem 3rem;
  flex-wrap: wrap;
  text-align: center;
}

.dohero-text .dohero-heading {
  font-size: 4rem;
  font-weight: 600;
  margin: 0;
}

/* Bouton DO */
.dohero-button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dohero-button {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, var(--red), var(--red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.6);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.dohero-button:hover {
  transform: scale(1.05);
}

.dohero-button-text {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
}

.pulse-animation {
  animation: pulseEffect 2.2s infinite;
}

@keyframes pulseEffect {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(255, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

/* Texte slogan */
.dohero-slogan {
  font-size: 2.5rem;
  line-height: 1.4;
  color: #060000;
}

.dohero-accent {
  color: var(--red);
  font-weight: 700;
}

/* Lien "Allons-y pour chatter" */
.dohero-chat-inline {
    margin-top: 2.5rem;
    text-align: center;
  }

  .dohero-chat-button {
    background-color: var(--red);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'PoppinsBold';
    display: inline-block;
  }

  .dohero-chat-button:hover {
    background-color: var(--red);
    transform: scale(1.05);
  }

