/*
Theme Name: SINF
Theme URI:  https://example.com/hello-elementor-child
Description: Thème enfant pour Hello Elementor
Author:
Author URI:  https://example.com
Template:    hello-elementor
Version:     1.0.0
Text Domain: hello-elementor-child
*/

/* Import du style parent */
@import url("../hello-elementor/style.css");

/* Ton CSS personnalisé ci-dessous */

.savoir{
  margin-top : -15%;
  z-index: 99;
}

.img_partenaires img{
  background: #FFFFFF !important;
  padding : 25px !important;
}

/* Image qui flotte */
#img_accueil img {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); } /* monte de 10px */
  100% { transform: translateY(0px); }   /* revient à sa position */
}

#logo_accueil img {
  animation: float2 3s ease-in-out infinite;
}

@keyframes float2 {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(5px); }
  100% { transform: translateY(0px); }
  0%   { transform: translateX(0px); }
  50%  { transform: translateX(5px); }
  100% { transform: translateX(0px); }    /* revient à sa position */
}

/* Opacité réduite sur mobile */
@media (max-width: 1024px) {
  #img_accueil img {
    opacity: 0.5;
  }
}
