@charset "UTF-8";
/* Bloc Hero Banner Technolution */
.wp-block-technolution-hero-banner {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.technolution-hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.technolution-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.technolution-hero-title {
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
  hyphens: auto;
}

.technolution-hero-button {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  white-space: nowrap;
  user-select: none;
}
.technolution-hero-button:hover {
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  filter: brightness(1.1);
}
.technolution-hero-button:focus {
  outline: 3px solid rgba(0, 124, 186, 0.5);
  outline-offset: 2px;
}
.technolution-hero-button:active {
  transform: translateY(1px);
}

.technolution-hero-image {
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.technolution-hero-image:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.technolution-scroll-arrow {
  cursor: pointer;
  transition: all 0.3s ease;
}
.technolution-scroll-arrow:hover {
  opacity: 0.8;
}
.technolution-scroll-arrow svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Animations */
@keyframes technolution-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes technolution-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes technolution-fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes technolution-fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes technolution-fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes technolution-zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes technolution-rotateIn {
  from {
    opacity: 0;
    transform: rotate(-180deg) scale(0.8);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}
@keyframes technolution-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}
/* Responsive Design */
@media (max-width: 1024px) {
  .technolution-hero-title {
    line-height: 1.3;
  }

  .technolution-hero-button {
    letter-spacing: 0.3px;
  }

  .technolution-hero-image {
    border-radius: 8px;
  }
}
@media (max-width: 768px) {
  .technolution-hero-title {
    line-height: 1.4;
    word-break: break-word;
  }

  .technolution-hero-button {
    letter-spacing: 0.2px;
    min-width: 120px;
  }

  .technolution-hero-image {
    border-radius: 6px;
  }
  .technolution-hero-image:hover {
    transform: scale(1.02);
  }

  .technolution-scroll-arrow svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
  }
}
@media (max-width: 480px) {
  .technolution-hero-title {
    line-height: 1.5;
  }

  .technolution-hero-button {
    min-width: 100px;
    font-size: 14px !important;
  }

  .technolution-hero-image:hover {
    transform: none;
  }
}
/* Optimisations de performance */
.technolution-hero-banner * {
  will-change: auto;
}

.technolution-hero-banner[data-animation] * {
  will-change: transform, opacity;
}

/* Support des préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  .technolution-hero-banner *,
.technolution-hero-banner *::before,
.technolution-hero-banner *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .technolution-scroll-arrow {
    animation: none !important;
  }
}
/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .technolution-hero-banner .technolution-hero-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  .technolution-hero-banner .technolution-hero-button {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }
  .technolution-hero-banner .technolution-hero-button:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  }
  .technolution-hero-banner .technolution-hero-image {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  }
  .technolution-hero-banner .technolution-hero-image:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  }
}
/* Amélioration de l'accessibilité */
.technolution-hero-button:focus-visible {
  outline: 3px solid #007cba;
  outline-offset: 2px;
}

.technolution-scroll-arrow:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Support des contrastes élevés */
@media (prefers-contrast: high) {
  .technolution-hero-button {
    border: 2px solid currentColor;
  }

  .technolution-hero-title {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  }
}
/* Optimisation pour l'impression */
@media print {
  .technolution-hero-banner .technolution-scroll-arrow {
    display: none !important;
  }
  .technolution-hero-banner .technolution-hero-button::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }
}
/* États de chargement */
.technolution-hero-banner.loading .technolution-hero-title,
.technolution-hero-banner.loading .technolution-hero-button,
.technolution-hero-banner.loading .technolution-hero-image {
  opacity: 0.5;
  pointer-events: none;
}

/* Effet parallax pour l'image de fond (optionnel) */
.technolution-hero-banner[data-parallax=true] {
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .technolution-hero-banner[data-parallax=true] {
    background-attachment: scroll;
  }
}

/* Overlay gradient pour améliorer la lisibilité */
.technolution-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.technolution-hero-banner:hover::before {
  opacity: 1;
}

/* Styles pour les textes avec arrière-plan */
.technolution-hero-title[style*=background-color]:not([style*=transparent]) {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Animation de typing effect pour le titre (optionnel) */
@keyframes technolution-typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.technolution-hero-title.typing-effect {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid;
  animation: technolution-typing 3s steps(30, end), blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: currentColor;
  }
}
/* Styles pour les icônes dans les boutons */
.technolution-hero-button .icon {
  margin-right: 8px;
  vertical-align: middle;
}
.technolution-hero-button .icon-after {
  margin-left: 8px;
  margin-right: 0;
}

/* Effet glassmorphism pour les éléments modernes */
.technolution-hero-banner.glassmorphism .technolution-hero-title,
.technolution-hero-banner.glassmorphism .technolution-hero-button {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Support pour les couleurs CSS custom properties */
.technolution-hero-banner {
  --hero-primary-color: #007cba;
  --hero-secondary-color: #0099d4;
  --hero-text-color: #ffffff;
  --hero-bg-color: #1a202c;
  --hero-shadow-color: rgba(0, 0, 0, 0.2);
  --hero-border-radius: 12px;
  --hero-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Variantes de style prédéfinies */
.technolution-hero-banner.style-minimal .technolution-hero-title {
  font-weight: 300;
  letter-spacing: 2px;
}
.technolution-hero-banner.style-minimal .technolution-hero-button {
  background: transparent;
  border: 2px solid currentColor;
  backdrop-filter: none;
}

.technolution-hero-banner.style-bold .technolution-hero-title {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.technolution-hero-banner.style-bold .technolution-hero-button {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.technolution-hero-banner.style-elegant .technolution-hero-title {
  font-family: "Georgia", serif;
  font-style: italic;
}
.technolution-hero-banner.style-elegant .technolution-hero-button {
  border-radius: 30px;
  padding: 15px 30px;
}

/* Animation d'apparition au scroll */
.technolution-hero-banner.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.technolution-hero-banner.animate-on-scroll.in-viewport {
  opacity: 1;
  transform: translateY(0);
}

/* Micro-interactions */
.technolution-hero-button {
  position: relative;
  overflow: hidden;
}
.technolution-hero-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}
.technolution-hero-button:hover::before {
  width: 200%;
  height: 200%;
}

/* Styles pour les indicateurs de performance */
.technolution-hero-banner[data-loading=true] .technolution-hero-content::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #007cba;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/*# sourceMappingURL=block-frontend.css.map */
