/*
Theme Name: Faro21 Child
Theme URI: https://faro21.com/
Description: Tema child Faro21
Author: Faro21
Author URI: https://faro21.com/
Template: hello-elementor
Version: 1.0.0
*/

/* Importa lo stile del tema genitore */
@import url("../hello-elementor/style.css");

/* Nascondere Titoli delle Pagine e Header del Sito */
h1.entry-title {
    display: none !important;
}

.site-header {
    display: none !important;
}

.site-footer{
	display: none !important;
}

/*a{
	color: #000 !important;
	font-weight: 400 !important;
	text-decoration: underline !important;
}*/

b{
	font-weight: 400 !important;
}

strong{
	font-weight: 400 !important;
}

/* Botton fixed footer */
/* Bottoni fissi tondi */
.contact-button {
  position: fixed;
  bottom: 60px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #0072c6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
  padding: 0;
  border: none;
  box-sizing: border-box;

  /* Bounce animation */
  animation: bounce 2s ease infinite;
}

/* Icone SVG bianche e centrate */
.contact-button svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: white;
}

/* Colore WhatsApp */
.whatsapp-button {
  background-color: #25D366;
  display: none;
}

.email-button {
  display: inline-flex;
}

/* Solo mobile: mostra WhatsApp, nascondi email */
@media (max-width: 767px) {
  .email-button {
    display: none;
  }

  .whatsapp-button {
    display: inline-flex;
  }
}

/* Animazione bounce */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
  60% {
    transform: translateY(-6px);
  }
}