/**
 * Global brand styles (all pages).
 * Landing section CSS lives in landing.css.
 */

:root {
	--llf-lime: #BADF4D;
	--llf-purple: #A53FCF;
	--llf-pink: #D26A9B;
	--llf-coral: #F08263;
	--llf-cream: #FAFAF8;
	--llf-ink: #1A1A1A;
	--llf-grey-soft: #666666;
	--llf-purple-light: #F5F0FA;
	--llf-font-body: Inter, system-ui, sans-serif;
	--llf-font-display: "Arial Black", Impact, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

body {
	margin: 0;
	background: #fff;
	color: var(--llf-ink);
	font-family: var(--llf-font-body);
	font-size: 17px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img,
video,
canvas {
	max-width: 100%;
	height: auto;
}

iframe,
input,
select,
textarea,
button {
	max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--llf-font-display);
	font-weight: 700;
	letter-spacing: 0.005em;
	line-height: 1.15;
	color: var(--llf-ink);
}

a:where(:not(.wp-element-button)) {
	color: var(--llf-purple);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
}

a:where(:not(.wp-element-button)):hover {
	color: var(--llf-ink);
	text-decoration: none;
}

:root :where(.wp-element-button, .wp-block-button__link) {
	background-color: var(--llf-lime);
	border-width: 0;
	border-radius: 9999px;
	color: var(--llf-ink);
	font-family: var(--llf-font-body);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.25;
	padding: 1rem 2rem;
	text-decoration: none;
	text-transform: none;
}

:root :where(.wp-element-button, .wp-block-button__link):hover {
	background-color: var(--llf-lime);
	color: var(--llf-ink);
	filter: brightness(0.95);
}

body:not(.llf-is-landing) .entry-content {
	max-width: var(--wp--style--global--content-size, 1100px);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.llf-404 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 60vh;
	padding: 5rem 1.5rem;
	text-align: center;
}

.llf-404 h1 {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 4vw, 2.75rem);
}

.llf-404 p {
	margin: 0 0 2rem;
	color: var(--llf-grey-soft);
}

.llf-404 .wp-block-buttons {
	margin: 0;
}

footer.wp-block-template-part {
	margin-top: 0;
	padding: 2.5rem 1.5rem;
	background: var(--llf-ink);
	color: rgba(255, 255, 255, 0.75);
	font-family: var(--llf-font-body);
	font-size: 13px;
	line-height: 1.5;
	letter-spacing: 0;
}

footer.wp-block-template-part > .wp-block-group {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	max-width: 1280px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 1024px) {
	footer.wp-block-template-part {
		padding: 2.5rem 2.5rem;
	}
}

footer.wp-block-template-part p {
	margin: 0;
	color: inherit;
	font-size: inherit;
	font-weight: 400;
	letter-spacing: inherit;
	line-height: inherit;
}

footer.wp-block-template-part .llf-footer-copy-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1.5rem;
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer.wp-block-template-part .llf-footer-copy {
	color: rgba(255, 255, 255, 0.4);
	font-size: 12px;
	text-align: left;
}

footer.wp-block-template-part a:where(:not(.wp-element-button)) {
	color: rgba(255, 255, 255, 0.75);
	font-size: 14px;
	text-decoration: none;
}

footer.wp-block-template-part a:where(:not(.wp-element-button)):hover {
	color: var(--llf-lime);
}

@media (max-width: 1024px) {
	main *,
	footer * {
		min-width: 0;
	}
}

@media (max-width: 767px) {
	h1,
	h2,
	h3,
	h4,
	p,
	a,
	span,
	strong {
		overflow-wrap: break-word;
	}

	form {
		max-width: 100%;
	}

	input,
	select,
	textarea {
		font-size: 16px;
	}
}
