/* Style commun */
#contact-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  text-align: center;
  text-decoration: none;
  z-index: 9999;
}

.contact-circle {
background: #ea575d;
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
}

.contact-circle:hover {
  background:#110126;
}

.contact-text {
display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #ea575d;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- Version mobile --- */
@media (max-width: 768px) {
  #contact-icon {
    bottom: 25px;
    left: 25px;
  }

  .contact-circle {
    width: 65px;
    height: 65px;
    line-height: 65px;
    font-size: 28px;
  }

  .contact-text {
    display: none; /* on masque le texte pour garder un bouton rond */
  }
}
