/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/
.formulaire .col-md-6{
	display:inline-block;
	width: 49.5%;
}

/* Widget titre */
.hero-title-blend .elementor-heading-title {
  position: relative;
  font-size: 3.5rem;
  font-weight: 900;
  color: black;
  overflow: hidden;
}

/* Effet de lumière qui passe */
.hero-title-blend .elementor-heading-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.8),
    transparent
  );
  animation: shineTitle 3s ease-in-out infinite;
}

/* Animation */
@keyframes shineTitle {
  0%   { left: -60%; }
  60%  { left: 120%; }
  100% { left: 120%; }
}







/* Bouton Elementor */
.hero-btn .wpr-button {
  position: relative;
  display: inline-block;
  padding: 14px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  color: black;
  border-radius: 40px;
  border: none;
  overflow: hidden;

  /* Fond liquide statique */
  background: radial-gradient(circle at 20% 30%, #e9bf6f, #a67f2a 70%);
  box-shadow: inset 0 4px 10px rgba(255,255,255,0.3),
              inset -4px -4px 10px rgba(0,0,0,0.1);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

/* Texte au-dessus */
.hero-btn .wpr-button span {
  position: relative;
  z-index: 1;
}

/* Hover */
.hero-btn .wpr-button:hover {
  transform: scale(1.05);
  box-shadow: inset 0 4px 12px rgba(255,255,255,0.3),
              inset -4px -4px 12px rgba(0,0,0,0.1),
              0 0 15px rgba(233,191,111,0.5);
}



/* Cible ton bouton Elementor */
.hero-btn-black .wpr-button {
  position: relative;
  display: inline-block;
  padding: 14px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  color: white; /* texte blanc pour contraste */
  border-radius: 40px;
  border: none;
  overflow: hidden;

  /* Fond liquide noir */
  background: radial-gradient(circle at 20% 30%, #222, #000 70%);
  box-shadow: inset 0 4px 10px rgba(255,255,255,0.1),
              inset -4px -4px 10px rgba(0,0,0,0.5);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

/* Texte et icône */
.hero-btn-black .wpr-button span {
  position: relative;
  z-index: 1;
}

/* Hover */
.hero-btn-black .wpr-button:hover {
  transform: scale(1.05);
  box-shadow: inset 0 4px 12px rgba(255,255,255,0.2),
              inset -4px -4px 12px rgba(0,0,0,0.6),
              0 0 15px rgba(255,255,255,0.1);
}




.wpr-nav-menu .wpr-sub-menu {

    width: 250px!important;

}




/* Gradient liquide sur Tylliance PRO */
.hero-title-liquid .liquid-text {
  background: linear-gradient(45deg, #e9bf6f, #a67f2a, #e9bf6f, #a67f2a);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: liquidGradient 6s ease infinite;
}

@keyframes liquidGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Texte secondaire typing */
.hero-title-liquid .typing-text {
  display: inline-block;
  white-space: nowrap;
  color: white;
  vertical-align: bottom;
}



.border-title .elementor-heading-title {
    position: relative;
    padding-left: 20px;
    font-weight: 700;
}

.border-title .elementor-heading-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #a67f2a;
}



.bg-liquide {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05); /* fond légèrement transparent */
  border-radius: 15px;
  padding: 30px;
  z-index: 0;
}

/* Bulles animées */
.bg-liquide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle, #e9bf6f 20%, #a67f2a 80%);
  border-radius: 50%;
  animation: bubbleMove 8s linear infinite;
  opacity: 0.3;
  filter: blur(30px);
}

/* Animation des bulles */
@keyframes bubbleMove {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -10px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 10px) scale(0.9);
  }
  75% {
    transform: translate(10px, -20px) scale(1.05);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Contenu au-dessus des bulles */
.bg-liquide .elementor-widget-container,
.bg-liquide .elementor-button-wrapper {
  position: relative;
  z-index: 1;
}





/* Applique le style WPR-BUTTON au bouton Elementor */
.hero-btn .elementor-button {
  position: relative;
  display: inline-block;
  padding: 14px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  color: white!important;
  border-radius: 40px;
  border: none;
  overflow: hidden;

  /* Fond liquide statique */
  background: radial-gradient(circle at 20% 30%, #e9bf6f, #a67f2a 70%);
  box-shadow: inset 0 4px 10px rgba(255,255,255,0.3),
              inset -4px -4px 10px rgba(0,0,0,0.1);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

/* Texte au-dessus */
.hero-btn .elementor-button span {
  position: relative;
  z-index: 1;
}

/* Hover */
.hero-btn .elementor-button:hover {
  transform: scale(1.05);
  box-shadow: inset 0 4px 12px rgba(255,255,255,0.3),
              inset -4px -4px 12px rgba(0,0,0,0.1),
              0 0 15px rgba(233,191,111,0.5);
}




/* Animation globale du bloc */
.icons-style {
  animation: fadeSection 1.2s ease both;
}

@keyframes fadeSection {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation douce des icônes */
.icons-style .elementor-widget-image img {
  animation: floatIcon 4s ease-in-out infinite;
  transition: transform 0.4s ease;
}

/* Décalage pour éviter qu'elles bougent ensemble */
.icons-style .elementor-column:nth-child(1) img { animation-delay: 0s; }
.icons-style .elementor-column:nth-child(2) img { animation-delay: 0.8s; }
.icons-style .elementor-column:nth-child(3) img { animation-delay: 1.6s; }

@keyframes floatIcon {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* Effet au survol */
.icons-style .elementor-column:hover img {
  transform: scale(1.08);
}

/* Titres légèrement animés */
.icons-style h4 {
  transition: color 0.3s ease, transform 0.3s ease;
}

.icons-style .elementor-column:hover h4 {
  color: #a67f2a;
  transform: translateY(-4px);
}



/* Bouton "Voir Plus" */
.premium-blog-excerpt-link.elementor-button {
  position: relative;
  display: inline-block;
  padding: 14px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  border-radius: 40px;
  border: none;
  overflow: hidden;
  text-decoration: none;

  /* Fond liquide statique */
  background: radial-gradient(circle at 20% 30%, #e9bf6f, #a67f2a 70%);
  box-shadow: inset 0 4px 10px rgba(255,255,255,0.3),
              inset -4px -4px 10px rgba(0,0,0,0.1);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

/* Hover */
.premium-blog-excerpt-link.elementor-button:hover {
  transform: scale(1.05);
  box-shadow: inset 0 4px 12px rgba(255,255,255,0.3),
              inset -4px -4px 12px rgba(0,0,0,0.1),
              0 0 15px rgba(233,191,111,0.5);
}



/* Bouton "Écrire un avis" */
.ti-header-write-btn {
  position: relative;
  display: inline-block;
  padding: 14px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  color: black;
  border-radius: 40px;
  border: none;
  overflow: hidden;
  text-decoration: none;

  /* Fond liquide statique */
  background: radial-gradient(circle at 20% 30%, #e9bf6f, #a67f2a 70%);
  box-shadow: inset 0 4px 10px rgba(255,255,255,0.3),
              inset -4px -4px 10px rgba(0,0,0,0.1);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

/* Hover */
.ti-header-write-btn:hover {
  transform: scale(1.05);
  box-shadow: inset 0 4px 12px rgba(255,255,255,0.3),
              inset -4px -4px 12px rgba(0,0,0,0.1),
              0 0 15px rgba(233,191,111,0.5);
}
