/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
@font-face{
	font-family:'News Gothic Std';
	src: url('/wp-content/themes/generatepress_child/fonts/NewsGothicStd.woff') format('woff');
	font-display:swap;
}
@font-face{
	font-family:'News Gothic Std Oblique';
	src: url('/wp-content/themes/generatepress_child/fonts/NewsGothicStd-Oblique.woff') format('woff');
	font-display:swap;
}
@font-face{
	font-family:'News Gothic Std Bold';
	src: url('/wp-content/themes/generatepress_child/fonts/NewsGothicStd-Bold.woff') format('woff');
	font-display:swap;
}
@font-face{
	font-family:'News Gothic Std Bold Oblique';
	src: url('/wp-content/themes/generatepress_child/fonts/NewsGothicStd-BoldOblique.woff') format('woff');
	font-display:swap;
}
:root {
    /* COLORS */
    --graphite: #515151;
    --white: #FFF;
	--pink: #E46998;
	--fuchsia: #EF528E;
	--indigo: #7783AC;
	--periwinkle: #8499E4;

    /* TYPOGRAPHY */
    --font-regular: "News Gothic Std", sans-serif;
	--font-regular-oblique: "News Gothic Std Oblique", sans-serif;
	--font-bold: "News Gothic Std Bold", sans-serif;
	--font-bold-oblique: "News Gothic Std Bold Oblique", sans-serif;
}

h1, h2, h3, h4, p, ul{
    margin-bottom: 0;
}

/* TESTI */
.text--graphite { color: var(--graphite); }
.text--white { color: var(--white); }
.text--pink { color: var(--pink); }
.text--fuchsia { color: var(--fuchsia); }
.text--indigo { color: var(--indigo); }
.text--periwinkle { color: var(--periwinkle); }

/* FONT */
.fw-light { font-family: var(--font-regular); }
.fw-bold { font-family: var(--font-bold); }
.fw-light-oblique { font-family: var(--font-regular-oblique); }
.fw-bold-oblique { font-family: var(--font-bold-oblique); }

/* BUTTON */
.btn{
	padding: 0;
	display: flex;
    line-height: 1;
    cursor: pointer;
	border-radius: 10px;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}
.btn.gradient{
	border: none;
	position: relative;
}
button.btn.gradient, button.btn.gradient:focus, button.btn.gradient:hover span, button.btn.gradient:hover::after{
	background: linear-gradient(90deg, #EF528E 0%, #8499E4 100%);
}
button.btn:hover, button.btn.gradient::after {
	background: transparent;
}
button.btn.gradient:hover span {
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text !important;
}
button.btn.gradient::after{
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	padding: 3px;
	position: absolute;
	border-radius: 10px;
}
button.btn.gradient:hover::after{
	-webkit-mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}
button.btn.fuchsia, button.btn.periwinkle{
	border-style: solid;
}
button.btn.fuchsia, button.btn.fuchsia:focus{
	border-color: #EF528E;
	background-color: #EF528E;
}
button.btn.fuchsia:hover{
	color: #EF528E;
	background-color: transparent !important;
}
button.btn.periwinkle, button.btn.periwinkle:focus{
	border-color: #8499E4;
	background-color: #8499E4;
}
button.btn.periwinkle:hover{
	color: #8499E4;
	background-color: transparent !important;
}

/* FOOTER */
.copyright-bar a {
    text-decoration: none;
}