/*
Theme Name: Hello Elementor Child
Template: hello-elementor
*/

/* Texte du footer */
.custom-footer {
  position: relative;
  width: 100%;
  min-height: 60px;
  display: flex;
  justify-content: flex-start; /* texte à gauche */
  align-items: flex-end; 
  padding: 0 20px 30px 20px;
  box-sizing: border-box;
  font-size: 18px;
}


/* Icône Instagram flottante en bas à droite */
.insta-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.insta-float a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 10px;
  transition: transform 0.3s ease;
}

.insta-float a:hover {
  transform: scale(1.1);
}

.header-inner {
    margin-bottom: 55px; /* ajuste la valeur selon l'espace souhaité */
	 margin-top: -20px; /* ajuste la valeur selon l'espace souhaité */
}

/* Sur mobile, on retire le fixed et on met l’icône dans le footer */
@media (max-width: 768px) {
    .insta-float {
        position: static;
        margin-left: auto; /* espace entre texte et icône */
    }
    .custom-footer {
        flex-direction: row; /* garde texte et icône sur la même ligne */
    }
}