/* ER Hero Slider */
.er-hs {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.er-hs .er-hs-swiper {
	width: 100%;
}

.er-hs .swiper-slide {
	height: auto;
}

.er-hs-slide {
	position: relative;
	display: flex;
	width: 100%;
	min-height: 680px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

/* Overlay */
.er-hs-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(30, 28, 26, 0.72);
	z-index: 1;
}

/* Diagonal stripes */
.er-hs-slide.er-hs-stripes::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background-image: repeating-linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.025) 0px,
		rgba(255, 255, 255, 0.025) 1px,
		transparent 1px,
		transparent 22px
	);
}

/* Inner wrapper handles alignment */
.er-hs-inner {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px;
	align-items: flex-start;   /* horizontal */
	justify-content: center;   /* vertical */
}

.er-hs-content {
	max-width: 640px;
	text-align: left;
}

/* Text */
.er-hs-eyebrow {
	margin: 0 0 18px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #E8A33D;
}

.er-hs-heading {
	margin: 0 0 16px;
	font-size: 64px;
	line-height: 1.05;
	font-weight: 400;
	color: #fff;
}

.er-hs-sub {
	margin: 0 0 32px;
	font-size: 20px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.75);
}

/* Buttons */
.er-hs-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.er-hs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 28px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid transparent;
	border-radius: 2px;
	transition: all 0.25s ease;
	cursor: pointer;
}

.er-hs-btn-1 {
	color: #1E1C1A;
	background-color: #F5F0E8;
	border-color: #F5F0E8;
}

.er-hs-btn-2 {
	color: #fff;
	background-color: transparent;
	border-color: rgba(255, 255, 255, 0.35);
}

/* Pagination dashes */
.er-hs-pagination {
	position: absolute;
	bottom: 34px;
	left: 50%;
	transform: translateX(-50%);
	width: auto;
	max-width: 1200px;
	z-index: 5;
	display: flex;
	justify-content: flex-start;
	gap: 10px;
	padding: 0 40px;
	box-sizing: border-box;
}

.er-hs-pagination.swiper-pagination {
	left: 50%;
}

.er-hs-pagination .swiper-pagination-bullet {
	width: 28px;
	height: 3px;
	border-radius: 0;
	background-color: rgba(255, 255, 255, 0.35);
	opacity: 1;
	transition: background-color 0.25s ease;
	margin: 0 !important;
}

.er-hs-pagination .swiper-pagination-bullet-active {
	background-color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
	.er-hs-heading { font-size: 48px; }
}

@media (max-width: 767px) {
	.er-hs-slide { min-height: 520px; }
	.er-hs-heading { font-size: 36px; }
	.er-hs-sub { font-size: 17px; }
	.er-hs-btn { padding: 14px 22px; }
}
