/*
Theme Name: Space MARS
Author: CAMPI6277
Version: 1.0
Template: u-design
*/


/* TITOLI - HEADINGS */
h1,h2,h3{
		transition: all ease-in-out 0.4s allow-discrete;
}
h1:hover,h2:hover,h3:hover{
		filter: brightness(115%) saturate(50%) drop-shadow(0 0 0.1em #BACADF50) !important;
}

/* EFFETTO NEON box */
.box-neon-blu{
    box-shadow: 0 0 15px #408DEB, 0 0 15px inset #408DEB !important;
}
.box-neon-mars{
    box-shadow: 0 0 15px #FEBD8D, 0 0 15px inset #FEBD8D !important;
}



/* EFFETTO LINK testo */
.wp-block-paragraph > a{
position:relative;
color:#E77D11;
}
.wp-block-paragraph > a:hover{
		color:#FEBD8D;
		text-shadow:0 0 5px 5px black;
}

.wp-block-paragraph > a::after{
content:"";
position:absolute;
left:0;
bottom:-2px;
width:103%;
height:2px;
background:linear-gradient(
90deg,
transparent,
#E77D11,
#FEBD8D,
#E77D11,
transparent
);
background-size:200% auto;
filter:blur(0.5px);
animation:electricFlow 2s linear infinite;
}

.wp-block-paragraph > a:hover::after{
height:3px;
animation:electricFlowHover 1s linear infinite;
}

.wp-block-paragraph > a::before{
content:"";
position:absolute;
bottom:-5px;
left:0;
width:10px;
height:8px;
background:#FEBD8D;
border-radius:50%;
filter:blur(2px);
animation:sparkMove 2s linear infinite;
}

@keyframes electricFlow{
0%{background-position:0% center;}
100%{background-position:200% center;}
}

@keyframes electricFlowHover{
0%{background-position:0% center;}
100%{background-position:200% center;}
}

@keyframes sparkMove{
0%{left:0;}
100%{left:100%;}
}

.wp-block-paragraph > a:active::after{
animation:electricFlash .3s linear;
}

.wp-block-paragraph > a:active::before{
animation:sparkBurst .3s linear;
}

@keyframes electricFlash{
0%{opacity:1;}
50%{opacity:.2;}
100%{opacity:1;}
}

@keyframes sparkBurst{
0%{transform:scale(1);}
50%{transform:scale(2);}
100%{transform:scale(1);}
}