/*
Theme Name: Cuvée Créative
Theme URI: https://cuvee-creative.fr
Description: Cuvée Créative 1.0
Author: YoD
Author URI: https://yod-infographie.fr
Template: Divi
Version: 1.0.0
*/

/* Import du style du parent */
@import url("../Divi/style.css");


.titre-deco::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 420px;
    height: 420px;
    background: url('https://cuvee-creative.fr/wp-content/uploads/2025/02/deco-titre.svg') no-repeat center/contain;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.slider-home-1 .et_pb_bottom_inside_divider,
.slider-home-1 .et_pb_top_inside_divider {
    z-index: 50 !important;
}


.titre-stars {
    position: relative;
    display: flex;
    font-size: 2rem; /* Ajuste selon ton design */
}

/* Étoile 1 - Grande */
.titre-stars::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: url('https://cuvee-creative.fr/wp-content/uploads/2025/02/star.svg') no-repeat center/contain;
    transform: scale(1);
    animation: starAnimationBig 2s ease-in-out infinite alternate;
}

/* Étoile 2 - Petite */
.titre-stars::after {
    content: "";
    position: absolute;
    top: -50px; /* Décale au-dessus de la grande étoile */
    right: -30px; /* Plus proche de la grande */
    width: 25px; /* Plus petite */
    height: 25px;
    background: url('https://cuvee-creative.fr/wp-content/uploads/2025/02/star.svg') no-repeat center/contain;
    transform: scale(1);
    animation: starAnimationSmall 2s ease-in-out infinite alternate;
}

/* Animation de la grande étoile */
@keyframes starAnimationBig {
    0% { transform: scale(1); }
    100% { transform: scale(0.7); } /* Rétrécit quand l'autre grandit */
}

/* Animation de la petite étoile */
@keyframes starAnimationSmall {
    0% { transform: scale(1); }
    100% { transform: scale(1.3); } /* Grossit pendant que l'autre rétrécit */
}


.li-star {
    position: relative;
    padding-left: 50px; /* Espace pour l'étoile */
    list-style: none; /* Supprime les puces classiques */
	
}

/* Ajout de l'étoile devant */
.li-star::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 35px; /* Taille de l'étoile */
    height: 35px;
    background: url('https://cuvee-creative.fr/wp-content/uploads/2025/02/star.svg') no-repeat center/contain;
    transform: translateY(-50%);
	overflow:hidden;
		
		
}
