@charset "UTF-8";
/* Bloc Hero Builder - Styles Frontend Enhanced avec nouvelles options */
.wp-block-technolution-hero-builder {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  /* Styles par défaut pour les titres avec support des liens */
  /* Conteneur principal du contenu */
  /* Styles pour le bouton principal */
  /* Styles des boutons selon leur type - Bouton Principal */
  /* Rangées de contenu */
  /* Grilles des colonnes - Configuration responsive intégrée */
  /* Configuration des grilles selon le nombre de colonnes */
  /* Styles des colonnes */
  /* Responsive Design */
  /* Classes de visibilité responsive */
  /* Animations */
  /* Support du mode sombre */
  /* Amélioration de l'accessibilité */
  /* États de focus améliorés */
  /* Indicateurs de chargement */
  /* Améliorations pour les appareils tactiles */
  /* Améliorations pour les grands écrans */
  /* Styles pour les boutons avec icônes */
  /* Effet de rotation pour certaines icônes */
  /* Micro-animations pour les éléments interactifs */
  /* Styles pour les différents effets de boutons */
  /* Animation de pulsation pour les boutons importants */
  /* Styles pour les boutons avec gradients */
  /* Améliorations pour l'impression */
  /* Optimisations de performance */
  /* Styles pour le mode haute performance */
  /* Styles spécifiques pour les rangées et colonnes avec couleurs d'arrière-plan */
  /* Amélioration de l'espacement pour les colonnes avec arrière-plan */
  /* Styles pour les liens avec couleurs transparentes */
  /* Améliorations pour les couleurs claires */
  /* NOUVELLES FONCTIONNALITÉS - Classes d'alignement personnalisé pour les colonnes */
  /* Styles pour l'alignement des colonnes flexibles */
  /* Override pour l'alignement vertical top */
  /* Amélioration de l'affichage des liens dans les textes */
  /* Styles spéciaux pour les rangées avec largeur complète */
}
.wp-block-technolution-hero-builder .hero-title {
  font-family: inherit;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.wp-block-technolution-hero-builder .hero-title a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(0, 124, 186, 0.5);
  transition: all 0.3s ease;
}
.wp-block-technolution-hero-builder .hero-title a:hover {
  text-decoration-color: #007cba;
}
.wp-block-technolution-hero-builder .hero-description {
  font-family: inherit;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.wp-block-technolution-hero-builder .hero-description a {
  color: #007cba;
  text-decoration: underline;
  text-decoration-color: rgba(0, 124, 186, 0.5);
  transition: all 0.3s ease;
}
.wp-block-technolution-hero-builder .hero-description a:hover {
  color: #005a87;
  text-decoration-color: #005a87;
}
.wp-block-technolution-hero-builder .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.wp-block-technolution-hero-builder .hero-button-container {
  margin-bottom: 2rem;
}
.wp-block-technolution-hero-builder .hero-main-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  gap: 8px;
  white-space: nowrap;
  /* Contenu du bouton par-dessus l'effet */
}
.wp-block-technolution-hero-builder .hero-main-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
  z-index: 1;
  pointer-events: none;
}
.wp-block-technolution-hero-builder .hero-main-button:hover {
  transform: translateY(-3px);
}
.wp-block-technolution-hero-builder .hero-main-button:hover::before {
  left: 100%;
}
.wp-block-technolution-hero-builder .hero-main-button:hover .hero-button-icon {
  transform: translateX(3px);
}
.wp-block-technolution-hero-builder .hero-main-button:active {
  transform: translateY(-1px);
}
.wp-block-technolution-hero-builder .hero-main-button:focus {
  outline: 3px solid rgba(0, 124, 186, 0.5);
  outline-offset: 2px;
}
.wp-block-technolution-hero-builder .hero-main-button .hero-button-icon {
  transition: transform 0.3s ease;
  z-index: 2;
  position: relative;
}
.wp-block-technolution-hero-builder .hero-main-button > * {
  position: relative;
  z-index: 2;
}
.wp-block-technolution-hero-builder .hero-button-primary {
  /* Styles définis dynamiquement via PHP */
}
.wp-block-technolution-hero-builder .hero-button-secondary {
  background-color: #6c757d;
  box-shadow: 0 4px 14px rgba(108, 117, 125, 0.3);
}
.wp-block-technolution-hero-builder .hero-button-outline {
  background-color: transparent !important;
}
.wp-block-technolution-hero-builder .hero-button-outline:hover {
  /* Styles définis dynamiquement via PHP */
}
.wp-block-technolution-hero-builder .hero-button-ghost {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.wp-block-technolution-hero-builder .hero-button-ghost:hover {
  text-decoration: none;
  /* Styles définis dynamiquement via PHP */
}
.wp-block-technolution-hero-builder .hero-content-rows {
  width: 100%;
}
.wp-block-technolution-hero-builder .hero-row {
  margin-bottom: 3rem;
  /* NOUVELLE FONCTIONNALITÉ - Rangées en largeur complète */
}
.wp-block-technolution-hero-builder .hero-row:last-child {
  margin-bottom: 0;
}
.wp-block-technolution-hero-builder .hero-row.full-width {
  /* Les styles de débordement sont générés dynamiquement en PHP */
  position: relative;
}
.wp-block-technolution-hero-builder .hero-row.full-width::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  z-index: -1;
}
.wp-block-technolution-hero-builder .hero-row-columns {
  display: grid;
  gap: 2rem;
  width: 100%;
}
.wp-block-technolution-hero-builder .hero-row[data-columns="1"] .hero-row-columns {
  grid-template-columns: 1fr;
  max-width: 600px;
}
.wp-block-technolution-hero-builder .hero-row[data-columns="2"] .hero-row-columns {
  grid-template-columns: repeat(2, 1fr);
}
.wp-block-technolution-hero-builder .hero-row[data-columns="3"] .hero-row-columns {
  grid-template-columns: repeat(3, 1fr);
}
.wp-block-technolution-hero-builder .hero-row[data-columns="4"] .hero-row-columns {
  grid-template-columns: repeat(4, 1fr);
}
.wp-block-technolution-hero-builder .hero-row[data-columns="5"] .hero-row-columns {
  grid-template-columns: repeat(5, 1fr);
}
.wp-block-technolution-hero-builder .hero-row[data-columns="6"] .hero-row-columns {
  grid-template-columns: repeat(6, 1fr);
}
.wp-block-technolution-hero-builder .hero-column {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.wp-block-technolution-hero-builder .hero-column[data-type=text] {
  /* NOUVELLES FONCTIONNALITÉS - Alignement du contenu dans les colonnes */
  /* Les alignements sont gérés dynamiquement via les styles PHP générés */
  /* mais on peut ajouter des classes d'aide pour les surcharges JS */
}
.wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-title {
  font-weight: 600;
  color: #1a202c;
  margin: 0 0 1rem 0;
  line-height: 1.3;
  font-family: inherit;
  /* Support des liens dans les titres de colonnes */
}
.wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-title a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(0, 124, 186, 0.5);
  transition: all 0.3s ease;
}
.wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-title a:hover {
  text-decoration-color: #007cba;
}
.wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-description {
  color: #4a5568;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  font-family: inherit;
  /* Support des liens dans les descriptions de colonnes */
}
.wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-description a {
  color: #007cba;
  text-decoration: underline;
  text-decoration-color: rgba(0, 124, 186, 0.5);
  transition: all 0.3s ease;
}
.wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-description a:hover {
  color: #005a87;
  text-decoration-color: #005a87;
}
.wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-button-container {
  /* Styles d'alignement définis dynamiquement via PHP */
}
.wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  /* Styles définis dynamiquement via PHP */
  /* Contenu du bouton par-dessus l'effet */
}
.wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
  z-index: 1;
  pointer-events: none;
}
.wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-button:hover {
  transform: translateY(-2px);
}
.wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-button:hover::before {
  left: 100%;
}
.wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-button:focus {
  outline: 3px solid rgba(0, 124, 186, 0.5);
  outline-offset: 2px;
}
.wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-button > * {
  position: relative;
  z-index: 2;
}
.wp-block-technolution-hero-builder .hero-column[data-type=text].content-align-left {
  text-align: left !important;
}
.wp-block-technolution-hero-builder .hero-column[data-type=text].content-align-center {
  text-align: center !important;
}
.wp-block-technolution-hero-builder .hero-column[data-type=text].content-align-right {
  text-align: right !important;
}
.wp-block-technolution-hero-builder .hero-column[data-type=text].content-valign-top {
  justify-content: flex-start !important;
}
.wp-block-technolution-hero-builder .hero-column[data-type=text].content-valign-center {
  justify-content: center !important;
}
.wp-block-technolution-hero-builder .hero-column[data-type=text].content-valign-bottom {
  justify-content: flex-end !important;
}
.wp-block-technolution-hero-builder .hero-column[data-type=image] .hero-column-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.wp-block-technolution-hero-builder .hero-column[data-type=image] .hero-column-image-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.wp-block-technolution-hero-builder .hero-column[data-type=image] .hero-column-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.wp-block-technolution-hero-builder .hero-column[data-type=image] .hero-column-image-link {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.wp-block-technolution-hero-builder .hero-column[data-type=image] .hero-column-image-link:hover .hero-column-image {
  transform: scale(1.05);
}
.wp-block-technolution-hero-builder .hero-column[data-type=image] .hero-column-image-link:focus {
  outline: 3px solid rgba(0, 124, 186, 0.5);
  outline-offset: 2px;
}
.wp-block-technolution-hero-builder .hero-column[data-type=image] .hero-image-hover-description {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1.5rem 1rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
  line-height: 1.4;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.wp-block-technolution-hero-builder .hero-column[data-type=image] .hero-column-image-container:hover .hero-image-hover-description {
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .wp-block-technolution-hero-builder {
    /* Réorganisation des colonnes sur tablette */
    /* Ajustement des rangées pleine largeur sur tablette */
  }
  .wp-block-technolution-hero-builder .hero-row-columns {
    gap: 1.5rem;
  }
  .wp-block-technolution-hero-builder .hero-row[data-columns="4"] .hero-row-columns,
.wp-block-technolution-hero-builder .hero-row[data-columns="5"] .hero-row-columns,
.wp-block-technolution-hero-builder .hero-row[data-columns="6"] .hero-row-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .wp-block-technolution-hero-builder .hero-row[data-columns="3"] .hero-row-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .wp-block-technolution-hero-builder .hero-button-xl {
    padding: 16px 32px !important;
    font-size: 18px !important;
  }
  .wp-block-technolution-hero-builder .hero-button-large {
    padding: 14px 28px !important;
    font-size: 16px !important;
  }
  .wp-block-technolution-hero-builder .hero-row.full-width {
    /* Les ajustements sont gérés dynamiquement en PHP */
  }
}
@media (max-width: 768px) {
  .wp-block-technolution-hero-builder {
    /* Toutes les colonnes en une seule colonne sur mobile */
    /* Centrer les colonnes uniques sur mobile */
    /* Ajustement des rangées pleine largeur sur mobile */
  }
  .wp-block-technolution-hero-builder .hero-row-columns {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  .wp-block-technolution-hero-builder .hero-row[data-columns="1"] .hero-row-columns {
    justify-items: center !important;
    max-width: none;
  }
  .wp-block-technolution-hero-builder .hero-row {
    margin-bottom: 2rem;
  }
  .wp-block-technolution-hero-builder .hero-column[data-type=text] {
    /* Forcer le centrage du contenu sur mobile si pas d'alignement personnalisé */
    /* Centrer les boutons sur mobile */
  }
  .wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-title {
    font-size: 1.25rem;
  }
  .wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-description {
    font-size: 0.9rem;
  }
  .wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-button {
    padding: 8px 16px !important;
    font-size: 14px !important;
  }
  .wp-block-technolution-hero-builder .hero-column[data-type=text]:not(.content-align-left):not(.content-align-right) {
    text-align: center !important;
  }
  .wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-button-container {
    text-align: center !important;
  }
  .wp-block-technolution-hero-builder .hero-button-xl {
    padding: 14px 28px !important;
    font-size: 16px !important;
  }
  .wp-block-technolution-hero-builder .hero-button-large {
    padding: 12px 24px !important;
    font-size: 15px !important;
  }
  .wp-block-technolution-hero-builder .hero-button-medium {
    padding: 10px 20px !important;
    font-size: 14px !important;
  }
  .wp-block-technolution-hero-builder .hero-row.full-width {
    /* Les ajustements sont gérés dynamiquement en PHP */
  }
}
@media (max-width: 480px) {
  .wp-block-technolution-hero-builder {
    /* Ajustements des boutons sur très petits écrans */
  }
  .wp-block-technolution-hero-builder .hero-content-rows .hero-column[data-type=image] .hero-image-hover-description {
    position: static;
    transform: none;
    background: rgba(0, 0, 0, 0.8);
    margin-top: 0.5rem;
    border-radius: 4px;
    padding: 0.75rem;
  }
  .wp-block-technolution-hero-builder .hero-content-rows .hero-column[data-type=image] .hero-column-image-container:hover .hero-image-hover-description {
    transform: none;
  }
  .wp-block-technolution-hero-builder .hero-main-button,
.wp-block-technolution-hero-builder .hero-column-button {
    min-width: 120px;
    text-align: center;
  }
}
@media (min-width: 1025px) {
  .wp-block-technolution-hero-builder.hero-hide-desktop {
    display: none !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .wp-block-technolution-hero-builder.hero-hide-tablet {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .wp-block-technolution-hero-builder.hero-hide-mobile {
    display: none !important;
  }
}
.wp-block-technolution-hero-builder[data-animation-enabled=true] [data-animate] {
  opacity: 0;
  transform: translateY(30px);
}
.wp-block-technolution-hero-builder[data-animation-enabled=true].hero-animated [data-animate] {
  animation-fill-mode: forwards;
}
.wp-block-technolution-hero-builder[data-animation-enabled=true].hero-animated [data-animate=title] {
  animation: heroFadeInUp var(--animation-duration, 600ms) ease-out var(--title-delay, 0ms);
}
.wp-block-technolution-hero-builder[data-animation-enabled=true].hero-animated [data-animate=description] {
  animation: heroFadeInUp var(--animation-duration, 600ms) ease-out var(--description-delay, 200ms);
}
.wp-block-technolution-hero-builder[data-animation-enabled=true].hero-animated [data-animate=button] {
  animation: heroFadeInUp var(--animation-duration, 600ms) ease-out var(--button-delay, 400ms);
}
.wp-block-technolution-hero-builder[data-animation-enabled=true].hero-animated [data-animate=content] {
  animation: heroFadeInUp var(--animation-duration, 600ms) ease-out var(--content-delay, 600ms);
}
@media (prefers-color-scheme: dark) {
  .wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-title {
    color: #f7fafc;
  }
  .wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-description {
    color: #e2e8f0;
  }
  .wp-block-technolution-hero-builder .hero-title {
    color: #f7fafc;
  }
  .wp-block-technolution-hero-builder .hero-description {
    color: #e2e8f0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wp-block-technolution-hero-builder *,
.wp-block-technolution-hero-builder *::before,
.wp-block-technolution-hero-builder *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.wp-block-technolution-hero-builder .hero-main-button:focus-visible,
.wp-block-technolution-hero-builder .hero-column-button:focus-visible,
.wp-block-technolution-hero-builder .hero-column-image-link:focus-visible {
  outline: 3px solid #007cba;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(0, 124, 186, 0.2);
}
.wp-block-technolution-hero-builder .hero-loading {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
@media (hover: none) and (pointer: coarse) {
  .wp-block-technolution-hero-builder .hero-column-image-container .hero-image-hover-description {
    position: static;
    transform: none;
    background: rgba(0, 0, 0, 0.8);
    margin-top: 0.5rem;
    border-radius: 4px;
    padding: 0.75rem;
  }
  .wp-block-technolution-hero-builder .hero-main-button:hover,
.wp-block-technolution-hero-builder .hero-column-button:hover {
    transform: none;
  }
  .wp-block-technolution-hero-builder .hero-column-image-container:hover {
    transform: none;
  }
}
@media (min-width: 1400px) {
  .hero-row[data-columns="1"] .wp-block-technolution-hero-builder .hero-row-columns {
    max-width: 800px;
  }
}
.wp-block-technolution-hero-builder .hero-main-button .hero-button-icon,
.wp-block-technolution-hero-builder .hero-column-button .hero-button-icon {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.wp-block-technolution-hero-builder .hero-main-button:hover .hero-button-icon[data-rotate=true],
.wp-block-technolution-hero-builder .hero-column-button:hover .hero-button-icon[data-rotate=true] {
  transform: rotate(15deg);
}
.wp-block-technolution-hero-builder .hero-column-title,
.wp-block-technolution-hero-builder .hero-column-description {
  transition: color 0.3s ease, transform 0.3s ease;
}
.wp-block-technolution-hero-builder .hero-column:hover .hero-column-title {
  transform: translateY(-2px);
}
.wp-block-technolution-hero-builder .hero-main-button.hero-button-outline:hover,
.wp-block-technolution-hero-builder .hero-column-button.hero-button-outline:hover {
  transform: translateY(-3px) scale(1.02);
}
.wp-block-technolution-hero-builder .hero-main-button.hero-button-ghost:hover,
.wp-block-technolution-hero-builder .hero-column-button.hero-button-ghost:hover {
  transform: translateY(-1px);
}
.wp-block-technolution-hero-builder .hero-main-button.pulse-animation {
  animation: heroButtonPulse 2s infinite;
}
@keyframes heroButtonPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 124, 186, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 124, 186, 0);
  }
}
.wp-block-technolution-hero-builder .hero-main-button.gradient-effect {
  background: linear-gradient(135deg, var(--button-color, #007cba), var(--button-hover-color, #005a87));
  background-size: 200% 200%;
  animation: heroGradientShift 3s ease infinite;
}
@keyframes heroGradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@media print {
  .wp-block-technolution-hero-builder .hero-main-button,
.wp-block-technolution-hero-builder .hero-column-button {
    color: #000 !important;
    background: #fff !important;
    border: 2px solid #000 !important;
    box-shadow: none !important;
  }
  .wp-block-technolution-hero-builder .hero-image-hover-description {
    position: static !important;
    transform: none !important;
    background: #f0f0f0 !important;
    color: #000 !important;
    margin-top: 0.5rem !important;
  }
  .wp-block-technolution-hero-builder .hero-row.full-width {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.wp-block-technolution-hero-builder .hero-column-image {
  will-change: transform;
}
.wp-block-technolution-hero-builder .hero-main-button,
.wp-block-technolution-hero-builder .hero-column-button {
  will-change: transform, box-shadow;
}
@media (prefers-reduced-motion: reduce) {
  .wp-block-technolution-hero-builder .hero-column-image,
.wp-block-technolution-hero-builder .hero-main-button,
.wp-block-technolution-hero-builder .hero-column-button {
    will-change: auto;
  }
}
.wp-block-technolution-hero-builder .hero-row {
  /* Les styles de couleur d'arrière-plan sont générés dynamiquement en PHP */
  border-radius: 8px;
  transition: background-color 0.3s ease;
  /* Styles pour les rangées pleine largeur */
}
.wp-block-technolution-hero-builder .hero-row.full-width {
  /* Indicateur visuel pour les rangées pleine largeur (visible en mode debug) */
}
.wp-block-technolution-hero-builder .hero-row.full-width::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2px;
  width: 4px;
  background: linear-gradient(to bottom, #007cba, #005a87);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.wp-block-technolution-hero-builder .hero-row.full-width:hover::after {
  opacity: 0.3;
}
.wp-block-technolution-hero-builder .hero-column {
  /* Les styles de couleur d'arrière-plan sont générés dynamiquement en PHP */
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.wp-block-technolution-hero-builder .hero-column[style*=background-color] {
  padding: 1.5rem;
  margin-bottom: 0.5rem;
}
.wp-block-technolution-hero-builder .hero-row[style*=background-color] {
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.wp-block-technolution-hero-builder .hero-main-button[style*=rgba],
.wp-block-technolution-hero-builder .hero-column-button[style*=rgba] {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.wp-block-technolution-hero-builder .hero-column[style*="rgba(255"] {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.wp-block-technolution-hero-builder .hero-row[style*="rgba(255"] {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.wp-block-technolution-hero-builder .hero-column[data-content-h-align=left] {
  text-align: left;
}
.wp-block-technolution-hero-builder .hero-column[data-content-h-align=center] {
  text-align: center;
}
.wp-block-technolution-hero-builder .hero-column[data-content-h-align=right] {
  text-align: right;
}
.wp-block-technolution-hero-builder .hero-column[data-content-v-align=top] {
  justify-content: flex-start;
}
.wp-block-technolution-hero-builder .hero-column[data-content-v-align=center] {
  justify-content: center;
}
.wp-block-technolution-hero-builder .hero-column[data-content-v-align=bottom] {
  justify-content: flex-end;
}
.wp-block-technolution-hero-builder .hero-column[data-type=text] {
  display: flex;
  flex-direction: column;
}
.wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-title {
  /* Titre en haut */
  order: 1;
}
.wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-description {
  /* Description au milieu, prend l'espace disponible */
  order: 2;
  flex: 1;
}
.wp-block-technolution-hero-builder .hero-column[data-type=text] .hero-column-button-container {
  /* Bouton selon l'alignement vertical défini */
  order: 3;
  /* Alignement vertical automatique si bottom */
  margin-top: auto;
}
.wp-block-technolution-hero-builder .hero-column[data-type=text]:not([data-button-vertical=bottom]) .hero-column-button-container {
  margin-top: 0;
  flex: none;
}
.wp-block-technolution-hero-builder .hero-column[data-type=text]:not([data-button-vertical=bottom]) .hero-column-description {
  flex: none;
}
.wp-block-technolution-hero-builder .hero-title a,
.wp-block-technolution-hero-builder .hero-description a,
.wp-block-technolution-hero-builder .hero-column-title a,
.wp-block-technolution-hero-builder .hero-column-description a {
  position: relative;
  z-index: 1;
}
.wp-block-technolution-hero-builder .hero-title a::after,
.wp-block-technolution-hero-builder .hero-description a::after,
.wp-block-technolution-hero-builder .hero-column-title a::after,
.wp-block-technolution-hero-builder .hero-column-description a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  opacity: 0.3;
}
.wp-block-technolution-hero-builder .hero-title a:hover::after,
.wp-block-technolution-hero-builder .hero-description a:hover::after,
.wp-block-technolution-hero-builder .hero-column-title a:hover::after,
.wp-block-technolution-hero-builder .hero-column-description a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.wp-block-technolution-hero-builder .hero-row.full-width {
  /* Ces styles sont générés dynamiquement en PHP mais on peut ajouter des améliorations */
  box-shadow: 0 0 0 1px rgba(0, 124, 186, 0.1);
  transition: box-shadow 0.3s ease;
  /* Amélioration visuelle pour distinguer les rangées pleine largeur */
}
.wp-block-technolution-hero-builder .hero-row.full-width:hover {
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}
.wp-block-technolution-hero-builder .hero-row.full-width::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 124, 186, 0.3), transparent);
  z-index: 1;
}

/* Keyframes pour les animations */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroFadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes heroFadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes heroSlideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroSlideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroZoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes heroBounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Classes d'animation dynamiques */
.hero-animate-fadeIn {
  animation: heroFadeIn var(--animation-duration, 600ms) ease-out;
}

.hero-animate-fadeInUp {
  animation: heroFadeInUp var(--animation-duration, 600ms) ease-out;
}

.hero-animate-fadeInDown {
  animation: heroFadeInDown var(--animation-duration, 600ms) ease-out;
}

.hero-animate-fadeInLeft {
  animation: heroFadeInLeft var(--animation-duration, 600ms) ease-out;
}

.hero-animate-fadeInRight {
  animation: heroFadeInRight var(--animation-duration, 600ms) ease-out;
}

.hero-animate-slideInUp {
  animation: heroSlideInUp var(--animation-duration, 600ms) ease-out;
}

.hero-animate-slideInDown {
  animation: heroSlideInDown var(--animation-duration, 600ms) ease-out;
}

.hero-animate-zoomIn {
  animation: heroZoomIn var(--animation-duration, 600ms) ease-out;
}

.hero-animate-bounceIn {
  animation: heroBounceIn var(--animation-duration, 600ms) ease-out;
}

/* Styles pour l'effet parallax */
.hero-parallax-container {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.hero-parallax-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: translate3d(-10%, -10%, 0);
  -webkit-transform: translate3d(-10%, -10%, 0);
}

/* Variables CSS personnalisables */
.wp-block-technolution-hero-builder {
  --hero-primary-color: #007cba;
  --hero-secondary-color: #005a87;
  --hero-text-color: #1a202c;
  --hero-background-color: #ffffff;
  --hero-border-radius: 8px;
  --hero-transition-duration: 0.3s;
  --hero-animation-duration: 600ms;
  --hero-shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
  --hero-shadow-medium: 0 4px 14px rgba(0, 0, 0, 0.15);
  --hero-shadow-heavy: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/*# sourceMappingURL=block-frontend.css.map */
