/* business name in header */
header h1 {
	font-size: 24px;
	margin-bottom: 0;
}

/* home page spacing adjustments */
.home .site-inner {
	padding-top: 0px;
}
.elementor-widget:not(:last-child), .elementor-element-cd310d6 p, .site-inner > p:nth-child(2), .site-inner > p:nth-child(3) {
	margin-bottom: 0;
}

/* inserts new menu toggle on header*/
.hfe-menu-toggle svg {
	background-image: url(/wp-content/uploads/2025/06/menu-toggle-light.png);
	background-size: contain;
	width: 10px;
	height: 10px;
}

/* color change on buttons */
button, .button, .btn, input[type="button"] {
	background-color: #A77132;
}
button:hover, .button:hover, .btn:hover, input[type="button"]:hover {
	background-color: #333;
}

/* color change on footer */
#genesis-footer-widgets, .site-footer {
	background-color: #121212;
	color: #fff;
	border-top: 1px solid #333;
}
#genesis-footer-widgets a:hover, .site-footer a:hover {
	color: #fff;
}

/* footer payments */
.pgsd_payment.paypal {
	background: #fff;
	background-image: url(/wp-content/uploads/2025/06/paypal_png.png);
	background-size: contain;
	border: 1px solid #fff;
	background-position: center!important;
}

/* images on service pages */
.entry-content img {
	box-shadow: 0 0 6px rgba(0,0,0,.25);
	border-radius: 3px;
}

/* contact forms */
#emailFormInner .emailFormLine, #SendEmail,#map, #directionsFrom {
	margin-bottom:12px;
}
#SendEmail, #getDirections {
	width:100%;
}

/* faq */
.faq-container h2 {
	color: #a77132!important;
	font-size: 14px!important;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.faq-item {
	border-radius: 6px;
	overflow: hidden;
}
.faq-answer {
	border-color: #f4f4f4!important;
	border-radius: 0 0 6px 6px;
}

/*stars on /reviews/*/
.page-id-46 .entry-content h3::after {
  content:url(/wp-content/uploads/2025/06/5stars.png);
  margin-left: 6px;
}

/* inserts license info after footer */
#genesis-footer-widgets:after {
	content: "Emperor Fence LLC is a licensed home improvement contractor: MHIC 137794";
	margin-top: 60px;
	width: 100%;
	text-align: center;
	font-style: italic;
}

/* featured services section on home page */
.featuredServices {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	min-height: 320px;
}
.cardWrap {
	width: 100%;
	margin: 6px;
}
.serviceCard {
	transform-style: preserve-3d;
	transition: transform 0.6s;
	position: relative;
}
.cardFace {
	position: absolute;
	backface-visibility: hidden;
}
.cardFace.back {
	transform: rotateY(180deg);
}
.serviceCard:hover {
	transform: rotateY(180deg);
}
.cardFace img {
	border-radius: 6px;
	box-shadow: 0 0 6px rgba(0,0,0,.25);
}
.featuredTitle {
	display: block;
	text-align: center;
	margin-top: 300px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 14px;
	color: #121212;
}

@media screen and (max-width: 1024px) {
	.featuredTitle {
		margin-top: 240px;
	}
}

@media screen and (max-width: 640px) {
	.featuredServices {
		flex-direction: column;
		max-width: 240px;
		margin: auto;
	}
	.cardWrap {
		margin: 0;
	}
	.featuredTitle {
		margin-top: 220px;
	}
}