/* Simple Hero Slider - Styles */

.shs-slider {
	width: 100%;
	position: relative;
}

.shs-slider .swiper-slide {
	height: 95vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.shs-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.45);
}

.shs-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	text-align: center;
	padding: 0 20px;
	font-family: 'Poppins', sans-serif;
}

.shs-heading {
	color: #ffffff;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 40px;
	line-height: 1.3;
	margin: 0 0 20px;
}

.shs-text {
	color: #f1f1f1;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 17px;
	line-height: 1.6;
	margin: 0 0 30px;
}

.shs-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

.shs-btn {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	padding: 14px 28px;
	border-radius: 2px;
	display: inline-block;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.shs-btn:hover {
	opacity: 0.85;
	transform: translateY(-2px);
}

.shs-btn-primary {
	background-color: #a6811a;
	color: #ffffff;
}

.shs-btn-secondary {
	background-color: #a6811a;
	color: #ffffff;
}

/* Navigation arrows */
.shs-slider .swiper-button-prev,
.shs-slider .swiper-button-next {
	color: #ffffff;
	width: 44px;
	height: 44px;
}

.shs-slider .swiper-button-prev:after,
.shs-slider .swiper-button-next:after {
	font-size: 22px;
}

/* Pagination dots */
.shs-slider .swiper-pagination-bullet {
	background: #ffffff;
	opacity: 0.6;
}

.shs-slider .swiper-pagination-bullet-active {
	opacity: 1;
	background: #a6811a;
}

/* Responsive */
@media (max-width: 768px) {
	.shs-slider .swiper-slide {
		height: 70vh;
	}

	.shs-heading {
		font-size: 26px;
	}

	.shs-text {
		font-size: 15px;
	}

	.shs-slider .swiper-button-prev,
	.shs-slider .swiper-button-next {
		display: none;
	}
}
