/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--wp--preset--spacing--50: 1.5rem;
	--wp--preset--color--accent-1: #000000;
}

body {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

/* Skip Link for Accessibility */
.skip-link.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.skip-link.screen-reader-text:focus {
	background-color: #ddd;
	clip: auto;
	clip-path: none;
	color: #444;
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Header and Footer */
.site-header,
.site-footer {
	display: block;
}

.site-branding {
	display: block;
}

/* Main Content */
.site-main {
	display: block;
}

.page-content {
	margin: 0;
	padding: 0;
}

/* Cover Block Styles */
.wp-block-cover {
	align-items: center;
	background-position: 50%;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	min-height: 100vh;
	overflow: hidden;
	overflow: clip;
	padding-top: 200px;
	padding-right: var(--wp--preset--spacing--50);
	padding-bottom: 200px;
	padding-left: var(--wp--preset--spacing--50);
	position: relative;
	margin-top: 0;
	margin-bottom: 0;
}

.wp-block-cover.alignfull {
	width: 100%;
	max-width: 100%;
}

/* Cover Image */
.wp-block-cover__image-background {
	border: none;
	bottom: 0;
	box-shadow: none;
	height: 100%;
	left: 0;
	margin: 0;
	max-height: none;
	max-width: none;
	object-fit: cover;
	outline: none;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 0;
}

/* Cover Background Overlay */
.wp-block-cover__background {
	bottom: 0;
	left: 0;
	opacity: 0.5;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
	background-color: #a87982;
}

.wp-block-cover__background.has-background-dim {
	opacity: 0.5;
}

.wp-block-cover__background.has-background-dim-10 {
	opacity: 0.1;
}

/* Inner Container */
.wp-block-cover__inner-container {
	color: var(--wp--preset--color--accent-1);
	position: relative;
	width: 100%;
	z-index: 2;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.wp-block-cover.is-light .wp-block-cover__inner-container {
	color: #000000;
}

/* Typography */
.has-text-align-center {
	text-align: center;
}

.has-large-font-size {
	font-size: 36px;
}

p {
	margin-block-start: 0;
	margin-block-end: 0;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
	.wp-block-cover {
		padding-top: 100px;
		padding-bottom: 100px;
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.has-large-font-size {
		font-size: 24px;
	}
}

/* Color Classes */
.has-accent-1-color {
	color: var(--wp--preset--color--accent-1);
}

.has-text-color {
	color: inherit;
}

.has-link-color a {
	color: inherit;
}

.is-light {
	color: #000000;
}
