/**
Theme Name: Purrfect Galerie
Template:   twentytwentyfour
Theme URI: https://wordpress.org/themes/twentytwentyfour/
Template: twentytwentyfour
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Four is designed to be flexible, versatile and applicable to any website. Its collection of templates and patterns tailor to different needs, such as presenting a business, blogging and writing or showcasing work. A multitude of possibilities open up with just a few adjustments to color and typography. Twenty Twenty-Four comes with style variations and full page designs to help speed up the site building process, is fully compatible with the site editor, and takes advantage of new design tools introduced in WordPress 6.4.
Tags: one-column,custom-colors,custom-menu,custom-logo,editor-style,featured-images,full-site-editing,block-patterns,rtl-language-support,sticky-post,threaded-comments,translation-ready,wide-blocks,block-styles,style-variations,accessibility-ready,blog,portfolio,news
Version: 1.1.1712642467
 */


/* Bouton principal */
.bouton-principal:hover {
    background-color: #786945 !important;
    border-color: #786945 !important;
}

/**************/
/*  ACCUEIL  */
/************/

/* Bannière | ANIMATION des vignettes */
@supports (animation-timeline: view()) {
    .hero-vignettes {
    transform-origin: bottom;
    animation: banniere linear forwards;
    animation-timeline: view();
    animation-range: exit();
    }
}

@keyframes banniere {
    25% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


/* Section Oeuvres | ANIMATION du titre  */
.nf-masque-gradient {
    background: radial-gradient(circle, #232323, #d4b682) !important;
    background-clip: text !important;
    color: transparent !important;
    animation: masque-gradient 15s linear infinite;
    background-size: 200% 200%;
}
    
@keyframes masque-gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* ANIMATION des images */
@supports (animation-timeline: view()) {
    .nf-fondu {
        animation: nf-fondu linear forwards;
        animation-timeline: view() !important;
        animation-range-start: entry !important;
    }
}

@keyframes nf-fondu {
    0% {
        scale: .8;
        opacity: 0;
        }
    50% {
        opacity: 1;
    }
    100% {
        scale: 1;
        opacity: 1;
    }
}

/* ANIMATION | Coeur pulsation */
.nf-coeur {
    color: #d4b682;
    text-shadow: -10px 10px 90px #e1a8d9;
	animation: pulsation 2s linear infinite !important;
}

@keyframes pulsation {
	0% {
		text-shadow: -10px 10px 45px #e1a8d9;
	}

	70% {
        text-shadow: -10px 10px 90px #e1a8d9;
	}

	100% {
        text-shadow: -10px 10px 45px #e1a8d9;
	}
}


/* ANIMATION Titre bannière */
.accueil-titre-h1 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #fbf8f3, #d4b682, #fbf8f3);
    background-repeat: no-repeat;
    background-size: 125%;
    animation: animate 7s linear forwards;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    }
    
    @keyframes animate {
        0% {
            background-position: 500%;
            }
        50% {
            background-position: -500%;
        }
    }
                

/***********************************/
/* BANNIÈRES AUTRES QUE L'ACCUEIL */
/*********************************/

/* ANIMATION Images bannière */
.wp-block-cover {
    overflow: hidden;
}
.wp-block-cover__image-background {
    animation: zoom-out 2s ease-in forwards;
}

@keyframes zoom-out {
    from
        {
            transform: scale(1.2);
            }
            to
            {
            transform: scale(1);
        }
}


/*************/
/* A PROPOS */
/***********/

/* ANIMATION au survol */
.apropos-equipe-img:hover {
    filter: brightness(130%) !important;
}


/*****************/
/* NOS ARTISTES */
/***************/
.artistes-banniere-img {
    filter: sepia(.25);
}


/***************/
/* INFOLETTRE */
/*************/

/* Styles STATIQUES */
.infolettre-bloc-texte {
    background-color: rgba(251, 248, 243, 0.5);
    width: 50%;
    margin: 0 auto;
    opacity: .8;
}

/* ANIMATION Bandeau défilant */
.marquise-conteneur {
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    opacity: .5;
}

.marquise-texte-droite, .marquise-texte-gauche { 
    white-space: nowrap;
    will-change: transform;
} 

.marquise-texte-droite{ 
    animation: marqueeDroite 50s linear infinite;
} 
@keyframes marqueeDroite {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquise-texte-gauche { 
    animation: marqueeGauche 32s linear infinite;
} 
@keyframes marqueeGauche {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
}