/**
 * CSS Overrides - Loaded last to ensure priority over WP defaults
 * This file resets any WordPress/Gutenberg styles that might conflict
 */

/* Reset WordPress heading styles */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	font-family: var(--gotham), "Gotham", sans-serif !important;
	line-height: 100% !important;
	font-weight: 400;
	margin-top: 0;
	margin-bottom: 0.5rem;
	color: inherit;
}

/* Specific heading sizes from Arany */
h1, .h1 {
	font-size: 34px !important;
}

@media (min-width: 960px) {
	h1, .h1 {
		font-size: 50px !important;
	}
}

h2, .h2 {
	font-size: 24px;
}

h3, .h3 {
	font-size: 20px;
}

h4, .h4 {
	font-size: 20px;
}

@media (min-width: 960px) {
	h4, .h4 {
		font-size: 24px;
	}
}

h5, .h5 {
	font-size: 16px;
}

@media (min-width: 960px) {
	h5, .h5 {
		font-size: 20px;
	}
}

/* Reset body and base elements */
body {
	font-family: var(--gotham), "Gotham", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: var(--text-color, #060132);
	background-color: #fff;
	margin: 0;
	padding: 0;
}

/* Reset paragraphs */
p {
	font-size: 16px;
	margin-top: 0;
	margin-bottom: 1rem;
}

/* Reset links */
a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: inherit;
}

/* Reset buttons - ensure our .btn styles work */
.btn {
	border-radius: 50px !important;
	padding: 14px 24px !important;
	font-size: 14px !important;
	line-height: 100% !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	transition: all 0.3s !important;
	border: 2px solid transparent !important;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	user-select: none;
}

@media (min-width: 960px) {
	.btn {
		padding: 16px 26px !important;
		font-size: 16px !important;
	}
}

.btn-primary {
	color: var(--white, #fff) !important;
	background-color: var(--primary, #96752b) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	color: var(--white, #fff) !important;
	background-color: var(--primary, #96752b) !important;
}

.btn-secondary {
	color: var(--white, #fff) !important;
	background-color: var(--black, #000) !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
	color: var(--white, #fff) !important;
	background-color: var(--black, #000) !important;
}

/* Remove WP block margins */
.wp-block-group,
.wp-block-columns,
.wp-block-column {
	margin: 0;
	padding: 0;
}

/* Reset figure margins */
figure {
	margin: 0;
}

/* Reset list styles for nav */
.page-nav-list,
.footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Ensure container widths */
.container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}
}

@media (min-width: 1400px) {
	.container {
		max-width: 1320px;
	}
}

/* Remove any WP inline styles on images */
img {
	max-width: 100%;
	height: auto;
}

/* Ensure our color variables work */
:root {
	--gotham: "Gotham", sans-serif;
	--white: #ffffff;
	--black: #000000;
	--brand-color-1: #002038;
	--brand-color-1-hover: #00111f;
	--text-color: #060132;
	--primary: #96752b;
}

