/**
 * Theme Name:     Dindon du Dev
 * Author:         Darwine and Co
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */

/* bouton custom*/
.wp-block-button__link {
	color: #fff !important;
    background-color: #374A95 !important;
    color: white;
    padding: 12px 24px;
    border-radius: 6px !important;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid #374A95;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Effet hover avec animation */
.wp-block-button__link:hover {
    color: #374A95 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(55, 74, 149, 0.3);
}

/* Création de l'effet de remplissage */
.wp-block-button__link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
}

/* Animation du remplissage au hover */
.wp-block-button__link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Style actif au clic */
.wp-block-button__link:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(55, 74, 149, 0.2);
}

/* Version désactivée du bouton si nécessaire */
.wp-block-button__link:disabled {
    background-color: #9BA3C5;
    border-color: #9BA3C5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/**********************************************************/


/* filtres */

/* Cacher sur les tablettes (écrans de 768px à 1024px) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .premium-blog-filter {
    display: none;
  }
}

/* Cacher sur les mobiles (écrans en dessous de 768px) */
@media only screen and (max-width: 767px) {
  .premium-blog-filter {
    display: none;
  }
}


/* inspiration styles */


/*BLOC SOCIAL LOGIN */

div.nsl-container[data-align="left"] {
    text-align: center !important;
}



