/*
Theme Name: Prism & Poise
Theme URI: https://prismandpoise.com
Description: Child theme of Twenty Twenty-Five for Prism & Poise — beauty and brains for your business. Brand fonts (Hanken Grotesk, Newsreader, IBM Plex Mono), the full color system, the signature six-color gradient stripe, and the gradient ampersand.
Author: Melanee Evans
Author URI: https://prismandpoise.com
Template: twentytwentyfive
Version: 0.1.0
Requires at least: 6.6
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: prism-poise
*/

/* ============================================================
   Prism & Poise — brand utilities
   These classes are applied to blocks in the editor via the
   "Advanced > Additional CSS class(es)" field, or come baked
   into the front-page template.
   ============================================================ */

/* --- Signature gradient ampersand (or any accent word) --------- */
.pp-amp,
.pp-gradient-text {
	background: linear-gradient(90deg, #fe4d7b, #FFE040, #5DD8C0, #C8A0F0);
	-webkit-background-clip: text;
	        background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.pp-amp {
	font-style: italic;
	padding: 0 0.04em;
}

/* --- Signature six-color stripe -------------------------------- */
.pp-stripe {
	min-height: 10px;
	height: 10px;
	width: 100%;
	background: linear-gradient(90deg, #fe4d7b, #ffb7e4, #ffe040, #5dd8c0, #bee2f0, #c8a0f0);
}

/* --- Hero with a soft conic "blob" glow behind the content ----- */
.pp-hero {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.pp-hero::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80vw;
	max-width: 900px;
	aspect-ratio: 1 / 1;
	transform: translate(-50%, -50%);
	background: conic-gradient(from 40deg, #fe4d7b, #ffe040, #5dd8c0, #bee2f0, #c8a0f0, #fe4d7b);
	filter: blur(90px);
	opacity: 0.35;
	border-radius: 50%;
	pointer-events: none;
	z-index: -1;
}

/* --- Hero type ------------------------------------------------- */
/* --- Site title in header (Custom HTML block) ------------------- */
.pp-site-title {
	font-family: Newsreader, serif;
	font-weight: 400;
	font-size: 3rem;
	text-decoration: none !important;
	color: var(--wp--preset--color--contrast) !important;
	letter-spacing: -0.01em;
}

.pp-site-title:hover {
	opacity: 0.8;
	text-decoration: none !important;
}

.pp-eyebrow {
	font-family: "IBM Plex Mono", monospace;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-size: 0.8rem;
	opacity: 0.7;
	margin-bottom: 0.5rem;
}

.pp-hero-title {
	font-family: Newsreader, serif;
	font-weight: 400;
	font-size: clamp(3rem, 8vw, 6rem);
	line-height: 1.02;
	letter-spacing: -0.02em;
	margin: 0;
}

.pp-hero-for {
	font-family: Newsreader, serif;
	font-style: italic;
	font-size: clamp(1.4rem, 3vw, 2rem);
	opacity: 0.75;
	margin: 0 auto 0.25rem;
}

.pp-hero-sub {
	font-family: "Hanken Grotesk", sans-serif;
	font-size: clamp(1.05rem, 2.2vw, 1.4rem);
	max-width: 42ch;
	margin: 1rem auto 1.75rem;
}
