/* ------------ SITEWIDE DEFAULTS ------------ */
a {
  color: var(--theme-palette-color-1);
  font-weight: 600;
  overflow-wrap: break-word; /* Fix anchor wrapping */
  word-break: break-word; /* Fix anchor wrapping */
  text-decoration: underline;
}

body.single-post header.entry-header a {
	color: #f7f7f7;
}
body.single-post header.entry-header a:hover {
	color: #898989;
}

/* Single Post - Related Posts Section, Posts Page - Card */
.ct-related-posts-container a, .entry-card a {
	color: unset;
	text-decoration: none;
}
.ct-related-posts-container a:hover, .entry-card a:hover {
	color: unset;
}

a:hover {
  color: color-mix(in srgb, var(--theme-palette-color-1) 70%, transparent);
  overflow-wrap: break-word; /* Fix anchor wrapping */
  word-break: break-word; /* Fix anchor wrapping */
  text-decoration: underline;
}

.site-title-container a {
  overflow-wrap: break-word; /* Fix anchor wrapping */
  word-break: break-word; /* Fix anchor wrapping */
  text-decoration: none;
}

.site-title-container a:hover {
  overflow-wrap: break-word; /* Fix anchor wrapping */
  word-break: break-word; /* Fix anchor wrapping */
  text-decoration: none;
}

.invisible a, .invisible {
	color: transparent;
}

/* Custom styles per page using page id ex: about is .page-id-23 */

/* ------------ HERO HEADER SECTION ------------ */
[data-prefix="single_page"] .hero-section[data-type="type-2"] {
	background-color: #222222;
}
h1.page-title {
	color: var(--theme-palette-color-7);
}
/* Excerpt */
.entry-header .page-description {
	color: var(--theme-palette-color-7);
}


/* ------------ PAGE TITLE ------------ */
/* Mobile */
.hero-section h1.page-title {
	font-size: 2rem;
	font-weight: 900;
	width: 100%;
}

/* Tablet */
@media screen and (min-width: 768px) {
	.hero-section h1.page-title {
		font-size: 2.8rem;
		font-weight: 900;
		width: 100%;
	}
}

/* Desktop */
@media screen and (min-width: 992px) {
	/* Pages */
	.hero-section h1.page-title {
		font-size: 3rem;
		font-weight: 900;			
		width: 40%;		
	}
	/* Blog */
	body.blog h1.page-title {
		font-size: 3rem;
		font-weight: 900;			
		width: 100%;		
	}
	/* Posts */
	body.single-post .hero-section h1.page-title {
		font-size: 3rem;
		font-weight: 900;			
		width: 100%;		
	}
}

/* ------------ HEADINGS ------------ */
/* Mobile */
.marketing-heading {
	font-size: 1.8rem;
	font-weight: 900;
}
.marketing-heading-label {
	font-size: 1rem;
	font-weight: 900;
}

/* Tablet */
@media screen and (min-width: 768px) and (max-width: 1023px) {
	.marketing-heading {
		font-size: 2.1rem;
		font-weight: 900;
	}
	.marketing-heading-label {
		font-size: 1.2rem;
		font-weight: 900;
	}	
}

/* Desktop */
@media screen and (min-width: 992px) {
	.hero-section h1.page-title {
		font-size: 3rem;
		font-weight: 900;			
		width: 40%;		
	}
	.marketing-heading {
		font-size: 3rem;
		font-weight: 900;	
	}	
}

/* ------------ GLOBAL HEADER ------------ */
.site-title a {
	color: var(--theme-palette-color-7);
}
[data-sticky="yes-end:slide"] .site-title a, [data-sticky="yes-hide-end:slide"] .site-title a {
	color: var(--theme-palette-color-3);
}
[data-sticky="yes:slide"] .site-title a {
	color: var(--theme-palette-color-3);
}

.wp-block-button.is-style-fill a {
    background-color: #0073aa;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
}
/* usability fix for non-linked nav dropdowns */
.menu-parent > a { /* class is set on the object in menu settings */
  cursor: default;
  pointer-events: none;
}

/* ------------ GLOBAL FOOTER ------------ */
footer p {
	margin-block-end: .7em;
}

/* Tablet */
@media screen and (max-width: 999.98px) {
	[data-footer*="type-1"] .ct-footer [data-row*="top"] > div {
		--grid-template-columns: 3fr 1fr;
	}
}

/* Mobile */
@media screen and (max-width: 689.98px) {
	[data-footer*="type-1"] .ct-footer [data-row*="top"] > div {
		--grid-template-columns: auto;
	}
}

footer div[data-row="middle"] {
	padding-top: 50px;
}

footer div[data-row="bottom"] {
	padding-bottom: 50px;
}

/* ------------ IDX BROKER ------------ */
/* Homepage Omnibar */
.hero-section {
  position: relative;
}

input[type=text].idx-omnibar-input {
    height: 60px;
}

.idx-omnibar-form button {
    height: 60px;
}

.home .idx-omnibar-wrapper {
  position: relative;
  transform: translateY(-195px);
  z-index: 10;
}

@media screen and (max-width: 992px) {
	.home .idx-omnibar-wrapper {
	  position: relative;
	  transform: translateY(-145px);
	  z-index: 10;
	}
	.home .gb-text-0b9231a1 {
	  font-size: 16px;
	}
}

.idx-omnibar-form {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

input#omnibar {
	background-color: #ffffff;
	border-radius: 12px 0 0 12px;
	border: 1px solid #DBE0E4;
	border-right: none;
	padding: 2px 10px;
}

input#omnibar:focus {
	background-color: #ffffff;
}

.idx-omnibar-form button {
    border-radius: 0 12px 12px 0;
    border-left: none;
    background-color: var(--theme-palette-color-1);
}

/* Carousel Widget */
.impress-carousel-photo {
  aspect-ratio: 4 / 3; /* normalize image heights */
  overflow: hidden;
	display: block;
}

.impress-carousel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ------------ CUSTOM LIST ICONS ------------ */
ul.custom-icon {
	list-style-type: none;
	padding-left: 0; /* Remove default padding */
	margin-block-end: calc(var(--has-theme-content-spacing, 1) * (.3em + 10px));
}
ul.custom-icon li {
	background-repeat: no-repeat;
	background-position: 0 4px; /* Adjust as needed for vertical alignment */
	padding-left: 1.8rem; /* Adjust based on image width and desired spacing */
}
.checkbox li {
	background-image: url('/wp-content/uploads/2025/11/square_20dp_222_FILL0_wght400_GRAD0_opsz20.png');
}

ul.unordered-icon-list {
	list-style: none;
}

ul.unordered-icon-list .icon {
	height: 1.5rem;
	width: 1.5rem;
	fill: currentcolor;
}

/* Service Providers */
.page-id-41 main h2 {
	border-bottom: 3px solid var(--theme-palette-color-8);
}

/* ------------ VENDOR CONTACT CARD ------------ */
.contact-card {
	margin-block-end: 60px;
	
	h3, p {
		margin-block-end: 0;
	}
	.contact-name {
		font-size: 1.2rem;
		font-weight: 700;
		margin-top: 20px;
	}
}

/* ------------ BLOG POST ------------ */
aside#sidebar, article.post {
	margin-bottom: 80px;
	margin-top: 40px;
}

/* ------------ NINJA FORMS ------------ */
/* ALL FORMS */
.custom-ninja-form .nf-before-form-content {
  margin-bottom: 20px;
}

/* Field Style */
.custom-ninja-form .nf-field-element input:not([type="submit"]), .nf-field-element select {
  background-color: #ffffff;
  border-radius: 5px;
  height: 2.5rem;
}

/* Hide required field message for single-field forms */
#nf-form-2-cont .nf-form-fields-required {
	display: none;
}

/* Ugly checkbox Fix */
.custom-ninja-form .field-wrap {
	flex-wrap: wrap;
	line-height: 1;
}
.custom-ninja-form .label-right .nf-field-description {
	margin-right: 0;
}

/* Edit disabled button for dark background form */
.custom-ninja-form.dark-bg [type=submit]:disabled {
  background-color: color-mix(in oklch, white 80%, #5c3068 20%);
  opacity: 1;
}

/* Style the form confirmation message */
.custom-ninja-form.dark-bg .nf-response-msg {
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 20px 40px;
	text-align: center;
}

.custom-ninja-form.dark-bg .nf-response-msg p {
	margin-block-end: unset;
}

/* Mobile */
@media screen and (max-width: 999.98px) {
	/* Full-width button */
	.custom-ninja-form.dark-bg input[type="submit"] {
		width: 100%;
	}
}