/*
Theme Name: Privaci demo
Theme URI: https://privaci.io
Description: Child theme of Twenty Twenty-Five for the temporary Privaci WordPress demo. Brand violet, slate neutrals, otherwise the stock design.
Author: Privaci
Template: twentytwentyfive
Version: 1.0.0
Requires at least: 6.6
Tested up to: 7.1
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: privaci-demo
*/

:root {
	--wp--preset--color--primary: #7c3aed;
	--wp--preset--color--primary-hover: #6d28d9;
}

body {
	-webkit-font-smoothing: antialiased;
}

.wp-block-button__link,
body .wp-block-button__link:not(.has-text-color) {
	background-color: var(--wp--preset--color--primary);
	color: #ffffff;
	border-radius: 6px;
	transition: background-color 120ms ease;
}

.wp-block-button__link:hover,
.wp-block-button__link:focus,
body .wp-block-button__link:not(.has-text-color):hover,
body .wp-block-button__link:not(.has-text-color):focus {
	background-color: var(--wp--preset--color--primary-hover);
	color: #ffffff;
}

.wp-block-button.is-style-outline .wp-block-button__link,
body .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
	background-color: transparent;
	color: var(--wp--preset--color--primary);
	border: 1px solid var(--wp--preset--color--primary);
}

/* The front page carries its own hero heading; the template's page title would be a second H1. */
body.home .wp-block-post-title {
	display: none;
}

.wp-site-blocks > header .wp-block-site-title a {
	color: var(--wp--preset--color--primary);
}

.wp-block-heading {
	text-wrap: balance;
}

.wp-block-post-title a,
.entry-content a {
	color: var(--wp--preset--color--primary-hover);
}