/* ============================================================
   HERO PLUGIN — Industrial Split Layout
   Matches the dark-navy / photo-right design.
   ============================================================ */

/* ── Google Font: Barlow Condensed (heavy condensed headlines) ── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&display=swap');


/* ─────────────────────────────────────────────────────────────
   CSS CUSTOM PROPERTIES  (edit these to re-skin quickly)
───────────────────────────────────────────────────────────── */
:root {
	--hero-navy:       #0d1523;
	--hero-navy-mid:   #111d30;
	--hero-blue:       #1a4fa0;
	--hero-blue-hover: #163d80;
	--hero-white:      #ffffff;
	--hero-grey:       #8a9ab0;
	--hero-grey-dim:   #5a6a7e;
	--hero-font:       'Barlow Condensed', 'Impact', 'Arial Black', sans-serif;
}


/* ─────────────────────────────────────────────────────────────
   CAROUSEL WRAPPER OVERRIDES
───────────────────────────────────────────────────────────── */
#carousel-hero.hero-industrial {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	margin-bottom: 0;
	overflow: hidden;
}

#carousel-hero.hero-industrial .carousel-inner {
	height: auto;
	overflow: hidden;
}

/* Remove Bootstrap's default caption positioning */
#carousel-hero.hero-industrial .carousel-inner .item .carousel-caption {
	position: static;
}


/* ─────────────────────────────────────────────────────────────
   SPLIT WRAPPER — side-by-side columns
───────────────────────────────────────────────────────────── */
.hero-split-wrap {
	display: flex;
	min-height: 580px;
	background-color: var(--hero-navy);
}

/* Stacked variant (menu / narrow sidebar) */
.hero-split-wrap-stacked {
	flex-direction: column;
	min-height: auto;
}


/* ─────────────────────────────────────────────────────────────
   LEFT PANEL — dark navy text area
───────────────────────────────────────────────────────────── */
.hero-left-panel {
	flex: 0 0 58%;
	background-color: var(--hero-navy);
	padding: 52px 64px 52px 68px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	box-sizing: border-box;
}

/* Subtle left edge accent line */
.hero-left-panel::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background-color: var(--hero-blue);
}


/* ─────────────────────────────────────────────────────────────
   RIGHT PANEL — full-bleed photo
───────────────────────────────────────────────────────────── */
.hero-right-panel {
	flex: 0 0 42%;
	position: relative;
	overflow: hidden;
	background-color: var(--hero-navy-mid);
}

/* The job-site photo */
.hero-panel-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* Fallback when HERO_MEDIA renders as a wrapper div */
.hero-right-panel > div:not([class*="hero-"]) img,
.hero-right-panel .img-fluid {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


/* ─────────────────────────────────────────────────────────────
   EYEBROW ROW  (badge + location text)
───────────────────────────────────────────────────────────── */
.hero-eyebrow {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

/* "★ Est. 1989 · Veteran Owned" filled badge */
.hero-est-badge {
	background-color: var(--hero-blue);
	color: var(--hero-white);
	font-family: var(--hero-font);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 5px 14px;
	display: inline-block;
	line-height: 1.6;
	white-space: nowrap;
}

/* "Portland, Indiana — Family Owned, Family Run" */
.hero-location-text {
	color: var(--hero-grey-dim);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.4;
}


/* ─────────────────────────────────────────────────────────────
   BIG HEADLINE
───────────────────────────────────────────────────────────── */
.hero-headline {
	font-family: var(--hero-font);
	font-size: clamp(56px, 7.2vw, 108px);
	font-weight: 900;
	line-height: 0.93;
	text-transform: uppercase;
	color: var(--hero-white);
	margin: 0 0 30px 0;
	letter-spacing: -0.01em;
}

/* Wrap a line in <span class="hero-accent"> in the admin to make it blue */
.hero-headline .hero-accent,
.hero-headline span.hero-accent {
	color: var(--hero-blue);
	display: block;
}

/* If the admin uses a plain <span> for one line */
.hero-headline span {
	color: var(--hero-blue);
}

/* H1/H2 inside the headline div (some plugin versions wrap in heading tags) */
.hero-headline h1,
.hero-headline h2 {
	font-family: var(--hero-font);
	font-size: inherit;
	font-weight: 900;
	line-height: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
}


/* ─────────────────────────────────────────────────────────────
   DESCRIPTION / SUB-PARAGRAPH
───────────────────────────────────────────────────────────── */
.hero-subtext {
	color: var(--hero-grey);
	font-size: 15px;
	line-height: 1.65;
	max-width: 480px;
	margin-bottom: 38px;
}

.hero-subtext p {
	margin: 0;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}


/* ─────────────────────────────────────────────────────────────
   CTA BUTTONS
───────────────────────────────────────────────────────────── */
.hero-cta-wrap {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
}

/* Primary — filled blue */
.hero-btn-primary {
	background-color: var(--hero-blue);
	color: var(--hero-white) !important;
	font-family: var(--hero-font);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 14px 30px;
	border: 2px solid var(--hero-blue);
	text-decoration: none !important;
	display: inline-block;
	line-height: 1.2;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hero-btn-primary:hover,
.hero-btn-primary:focus {
	background-color: var(--hero-blue-hover);
	border-color: var(--hero-blue-hover);
	color: var(--hero-white) !important;
	text-decoration: none !important;
}

/* Secondary — ghost / outline */
.hero-btn-outline {
	background-color: transparent;
	color: var(--hero-white) !important;
	font-family: var(--hero-font);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 14px 30px;
	border: 2px solid rgba(255, 255, 255, 0.6);
	text-decoration: none !important;
	display: inline-block;
	line-height: 1.2;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hero-btn-outline:hover,
.hero-btn-outline:focus {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: var(--hero-white);
	color: var(--hero-white) !important;
	text-decoration: none !important;
}


/* ─────────────────────────────────────────────────────────────
   ON-SITE NOW  badge (top-right of photo panel)
───────────────────────────────────────────────────────────── */
.hero-on-site-tag {
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--hero-blue);
	color: var(--hero-white);
	font-family: var(--hero-font);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 10px 22px;
	z-index: 20;
	line-height: 1.4;
}


/* ─────────────────────────────────────────────────────────────
   PROJECT CAPTION  (bottom overlay of photo panel)
───────────────────────────────────────────────────────────── */
.hero-project-cap {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(10, 16, 28, 0.80);
	padding: 14px 22px 16px;
	z-index: 20;
	backdrop-filter: blur(2px);
}

.hero-project-label {
	color: var(--hero-grey-dim);
	font-family: var(--hero-font);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.hero-project-name {
	color: var(--hero-white);
	font-family: var(--hero-font);
	font-weight: 700;
	font-size: 17px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1.2;
}


/* ─────────────────────────────────────────────────────────────
   CAROUSEL CONTROLS  (prev / next arrows)
───────────────────────────────────────────────────────────── */
.hero-industrial .hero-ctrl {
	position: absolute;
	top: auto;
	bottom: 20px;
	z-index: 30;
	background: rgba(255, 255, 255, 0.15);
	border: none;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--hero-white);
	font-size: 14px;
	cursor: pointer;
	transition: background 0.2s ease;
	border-radius: 0;
}

.hero-industrial .hero-ctrl:hover {
	background: var(--hero-blue);
}

.hero-ctrl-prev { left: 68px; }
.hero-ctrl-next { left: 112px; }

/* Carousel indicators (dots) */
.hero-industrial .hero-indicators {
	position: absolute;
	bottom: 28px;
	left: 160px;
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 6px;
}

.hero-industrial .hero-indicators li {
	width: 20px;
	height: 3px;
	background: rgba(255,255,255,0.3);
	border-radius: 2px;
	cursor: pointer;
	border: none;
	margin: 0;
	display: inline-block;
	transition: background 0.2s ease;
}

.hero-industrial .hero-indicators li.active {
	background: var(--hero-white);
}


/* ─────────────────────────────────────────────────────────────
   HIDE UNUSED LIST ITEMS
───────────────────────────────────────────────────────────── */
.hero-list-hidden,
.hero-item-hidden {
	display: none !important;
	visibility: hidden !important;
}


/* ─────────────────────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
───────────────────────────────────────────────────────────── */

/* Tablet — stack vertically */
@media (max-width: 991px) {
	.hero-split-wrap {
		flex-direction: column;
		min-height: auto;
	}

	.hero-left-panel {
		flex: none;
		padding: 40px 36px 36px 40px;
	}

	.hero-right-panel {
		flex: none;
		height: 320px;
	}

	.hero-headline {
		font-size: clamp(44px, 10vw, 72px);
	}

	.hero-location-text {
		display: none; /* too cramped on tablet */
	}
}

/* Mobile */
@media (max-width: 575px) {
	.hero-left-panel {
		padding: 30px 24px;
	}

	.hero-left-panel::before {
		display: none;
	}

	.hero-headline {
		font-size: clamp(40px, 13vw, 60px);
		margin-bottom: 20px;
	}

	.hero-subtext {
		font-size: 14px;
		margin-bottom: 28px;
	}

	.hero-right-panel {
		height: 240px;
	}

	.hero-cta-wrap {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.hero-btn-primary,
	.hero-btn-outline {
		width: 100%;
		text-align: center;
	}

	.hero-ctrl-prev { left: 24px; }
	.hero-ctrl-next { left: 68px; }

	.hero-industrial .hero-indicators {
		left: 116px;
	}
}


/* ─────────────────────────────────────────────────────────────
   LEGACY CLASSES  (kept for backwards compatibility with
   any existing hero content that references them)
───────────────────────────────────────────────────────────── */

.hero-list-icon {
	display: table-cell;
	vertical-align: middle;
}

li .hero-list-icon .hero-icon {
	margin: 0 20px 0 0;
	margin: 0 2rem 0 0;
}

.hero-icon {
	width: 40px;
	height: 40px;
	font-size: 18px;
	color: #fff;
	border-radius: 2px;
	display: inline-block;
	margin: 0 5px 5px 0;
	text-align: center;
	line-height: 2.2;
}

.hero-icon.hero-icon-square  { border-radius: 0; }
.hero-icon.hero-icon-round   { border-radius: 5px; }
.hero-icon.hero-icon-circle  { border-radius: 50%; }

.hero-icon.hero-icon-xlg {
	width: 60px;
	height: 60px;
	line-height: 60px;
	font-size: 24px;
}

li .hero-list-text {
	display: table-cell;
	vertical-align: middle;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 30px;
	line-height: 3rem;
}

.text-bold { font-weight: bold; }

/* ANIMATION */
.animation-delay-1 {
	-webkit-animation-delay: .1s !important;
	animation-delay: .1s !important
	}

.animation-delay-2 {
	-webkit-animation-delay: .2s !important;
	animation-delay: .2s !important
	}

.animation-delay-3 {
	-webkit-animation-delay: .3s !important;
	animation-delay: .3s !important
	}

.animation-delay-4 {
	-webkit-animation-delay: .4s !important;
	animation-delay: .4s !important
	}

.animation-delay-5 {
	-webkit-animation-delay: .5s !important;
	animation-delay: .5s !important
	}

.animation-delay-6 {
	-webkit-animation-delay: .6s !important;
	animation-delay: .6s !important
	}

.animation-delay-7 {
	-webkit-animation-delay: .7s !important;
	animation-delay: .7s !important
	}

.animation-delay-8 {
	-webkit-animation-delay: .8s !important;
	animation-delay: .8s !important
	}

.animation-delay-9 {
	-webkit-animation-delay: .9s !important;
	animation-delay: .9s !important
	}

.animation-delay-10 {
	-webkit-animation-delay: 1s !important;
	animation-delay: 1s !important
	}

.animation-delay-11 {
	-webkit-animation-delay: 1.1s !important;
	animation-delay: 1.1s !important
	}

.animation-delay-12 {
	-webkit-animation-delay: 1.2s !important;
	animation-delay: 1.2s !important
	}

.animation-delay-13 {
	-webkit-animation-delay: 1.3s !important;
	animation-delay: 1.3s !important
	}

.animation-delay-14 {
	-webkit-animation-delay: 1.4s !important;
	animation-delay: 1.4s !important
	}

.animation-delay-15 {
	-webkit-animation-delay: 1.5s !important;
	animation-delay: 1.5s !important
	}

.animation-delay-16 {
	-webkit-animation-delay: 1.6s !important;
	animation-delay: 1.6s !important
	}

.animation-delay-17 {
	-webkit-animation-delay: 1.7s !important;
	animation-delay: 1.7s !important
	}

.animation-delay-18 {
	-webkit-animation-delay: 1.8s !important;
	animation-delay: 1.8s !important
	}

.animation-delay-19 {
	-webkit-animation-delay: 1.9s !important;
	animation-delay: 1.9s !important
	}

.animation-delay-20 {
	-webkit-animation-delay: 2s !important;
	animation-delay: 2s !important
	}

.animation-delay-21 {
	-webkit-animation-delay: 2.1s !important;
	animation-delay: 2.1s !important
	}

.animation-delay-22 {
	-webkit-animation-delay: 2.2s !important;
	animation-delay: 2.2s !important
	}

.animation-delay-23 {
	-webkit-animation-delay: 2.3s !important;
	animation-delay: 2.3s !important
	}

.animation-delay-24 {
	-webkit-animation-delay: 2.4s !important;
	animation-delay: 2.4s !important
	}

.animation-delay-25 {
	-webkit-animation-delay: 2.5s !important;
	animation-delay: 2.5s !important
	}

.animation-delay-26 {
	-webkit-animation-delay: 2.6s !important;
	animation-delay: 2.6s !important
	}

.animation-delay-27 {
	-webkit-animation-delay: 2.6s !important;
	animation-delay: 2.6s !important
	}

.animation-delay-28 {
	-webkit-animation-delay: 2.8s !important;
	animation-delay: 2.8s !important
	}

.animation-delay-29 {
	-webkit-animation-delay: 2.9s !important;
	animation-delay: 2.9s !important
	}

.animation-delay-30 {
	-webkit-animation-delay: 3s !important;
	animation-delay: 3s !important
	}

.animation-delay-31 {
	-webkit-animation-delay: 3.1s !important;
	animation-delay: 3.1s !important
	}

.animation-delay-32 {
	-webkit-animation-delay: 3.2s !important;
	animation-delay: 3.2s !important
	}

.animation-delay-33 {
	-webkit-animation-delay: 3.3s !important;
	animation-delay: 3.3s !important
	}

.animation-delay-34 {
	-webkit-animation-delay: 3.4s !important;
	animation-delay: 3.4s !important
	}

.animation-delay-35 {
	-webkit-animation-delay: 3.5s !important;
	animation-delay: 3.5s !important
	}

.animation-delay-36 {
	-webkit-animation-delay: 3.6s !important;
	animation-delay: 3.6s !important
	}

.animation-delay-37 {
	-webkit-animation-delay: 3.7s !important;
	animation-delay: 3.7s !important
	}

.animation-delay-38 {
	-webkit-animation-delay: 3.8s !important;
	animation-delay: 3.8s !important
	}

.animation-delay-39 {
	-webkit-animation-delay: 3.9s !important;
	animation-delay: 3.9s !important
	}

.animation-delay-40 {
	-webkit-animation-delay: 4s !important;
	animation-delay: 4s !important
	}

.animation-delay-41 {
	-webkit-animation-delay: 4.1s !important;
	animation-delay: 4.1s !important
	}

.animation-delay-42 {
	-webkit-animation-delay: 4.2s !important;
	animation-delay: 4.2s !important
	}

.animation-delay-43 {
	-webkit-animation-delay: 4.3s !important;
	animation-delay: 4.3s !important
	}

.animation-delay-44 {
	-webkit-animation-delay: 4.4s !important;
	animation-delay: 4.4s !important
	}

.animation-delay-45 {
	-webkit-animation-delay: 4.5s !important;
	animation-delay: 4.5s !important
	}

.animation-delay-46 {
	-webkit-animation-delay: 4.6s !important;
	animation-delay: 4.6s !important
	}

.animation-delay-47 {
	-webkit-animation-delay: 4.7s !important;
	animation-delay: 4.7s !important
	}

.animation-delay-48 {
	-webkit-animation-delay: 4.8s !important;
	animation-delay: 4.8s !important
	}

.animation-delay-49 {
	-webkit-animation-delay: 4.9s !important;
	animation-delay: 4.9s !important
	}

.animation-delay-50 {
	-webkit-animation-delay: 5s !important;
	animation-delay: 5s !important
	}

.animation-delay-51 {
	-webkit-animation-delay: 5.1s !important;
	animation-delay: 5.1s !important
	}

.animation-delay-52 {
	-webkit-animation-delay: 5.2s !important;
	animation-delay: 5.2s !important
	}

.animation-delay-53 {
	-webkit-animation-delay: 5.3s !important;
	animation-delay: 5.3s !important
	}

.animation-delay-54 {
	-webkit-animation-delay: 5.4s !important;
	animation-delay: 5.4s !important
	}

.animation-delay-55 {
	-webkit-animation-delay: 5.5s !important;
	animation-delay: 5.5s !important
	}

.animation-delay-56 {
	-webkit-animation-delay: 5.6s !important;
	animation-delay: 5.6s !important
	}

.animation-delay-57 {
	-webkit-animation-delay: 5.7s !important;
	animation-delay: 5.7s !important
	}

.animation-delay-58 {
	-webkit-animation-delay: 5.8s !important;
	animation-delay: 5.8s !important
	}

.animation-delay-59 {
	-webkit-animation-delay: 5.9s !important;
	animation-delay: 5.9s !important
	}

.animation-delay-60 {
	-webkit-animation-delay: 6s !important;
	animation-delay: 6s !important
	}

.animated-2x {
	-webkit-animation-duration: .5s;
	animation-duration: .5s
	}

.animated-3x {
	-webkit-animation-duration: .25s;
	animation-duration: .25s
	}

.animated-slow {
	-webkit-animation-duration: 2s;
	animation-duration: 2s
	}