/*
Theme Name: Elementor Child Vitrine
Theme URI: https://g-webdesign.fr/
Description: Thème enfant pour Elementor optimisé
Author: Gaetan Granet
Author URI: https://leclubkravmaga.fr/
Template: hello-elementor
Version: 1.2.2026
Text Domain: elementor-child
*/

/******************************************
 * Annimation card zoom
 *****************************************/
/* ZOOM IMAGE */
.mon-conteneur-zoom .zoom-img img {transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;will-change: transform;}
.mon-conteneur-zoom:hover .zoom-img img {transform: scale(1.2) !important;}

/* TITRE — monte légèrement au hover */
.mon-conteneur-zoom .elementor-widget-heading {transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);}
.mon-conteneur-zoom:hover .elementor-widget-heading {transform: translateY(-8px);}

/* TEXTE & BOUTON — cachés par défaut */
.mon-conteneur-zoom .mon-conteneur-boutton{
    opacity: 0;
    overflow: hidden;
    transform: translateY(15px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* AU HOVER — révélation fluide */
.mon-conteneur-zoom:hover .mon-conteneur-boutton{opacity: 1;transform: translateY(0);}

/*************************************************
 * Boutton rond
 *************************************************/
body .elementor .btn-rond {
    width: 150px;
    height: 150px;
    border-radius: 50% !important;
    background-color: #17B7E7 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
body .elementor .btn-rond:hover {transform: scale(1.05);box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);}
body .elementor .btn-rond .elementor-widget {margin-bottom: 0 !important;}
@media (max-width: 767px) {
    body .elementor .btn-rond {width: 110px;height: 110px;}
}

/*************************************************
 * Animation texte slide
 *************************************************/
.marquee-wrapper {
  overflow: hidden;
  background: #0081C7;
  padding: 30px 0;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.marquee-track span {
  color: #fff;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.marquee-track span::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/*************************************************
 * Animation Réalisation
 *************************************************/
.galerie-btn {
    padding: 0px;
    background: transparent!important;
    color: #17B7E7!important;
    border: none!important;
    cursor: pointer;
    font-size: 16px;
position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
}
.galerie-btn:hover {
    color: #0081C7!important;
}
.galerie-container {
    text-align: center;
 
}

/* ── Lightbox ── */
.galerie-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, .9);
    align-items: center;
    justify-content: center;
}
.galerie-lightbox.open {
    display: flex;
}

/* ── Slider ── */
.galerie-slider {
    position: relative;
    width: 80vw;
    max-width: 900px;
    max-height: 80vh;
}
.galerie-slide {
    display: none;
}
.galerie-slide.active {
    display: block;
}
.galerie-slide img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

/* ── Flèches ── */
.galerie-prev,
.galerie-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    user-select: none;
    padding: 8px 16px;
    z-index: 100000;
    transition: opacity .2s;
}
.galerie-prev:hover,
.galerie-next:hover {
    opacity: .7;
}
.galerie-prev {
    left: 20px;
}
.galerie-next {
    right: 20px;
}

/* ── Fermer ── */
.galerie-close {
    position: fixed;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    z-index: 100000;
}
.galerie-close:hover {
    opacity: .7;
}

/* ── Compteur ── */
.galerie-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    z-index: 100000;
}