/* Modern Hero Slider Styles */
:root {
	--primary-color: #522811;
	--secondary-color: #d8ac27;
	--accent-color: #5625E8;
	--success-color: #03C95A;
	--dark-color: #1e293b;
	--light-color: #f8fafc;
}
 
/* Cursor Follower */
.cursor-follower {
	width: 20px;
	height: 20px;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	position: fixed;
	pointer-events: none;
	z-index: 9999;
	transition: 0.15s ease-out;
	display: none;
}

@media (min-width: 1024px) {
	.cursor-follower {
		display: block;
	}
}

/* Hero Slider Section */
.hero-slider-section {
	position: relative;
	min-height: 100vh;
	background: linear-gradient(135deg, #522811 0%, #8B4513 100%);
	padding: 0;
	padding-top: 100px; /* Account for sticky header */
	overflow: hidden;
	margin-top: 0;
	z-index: 1;
}

/* Modern Swiper Container */
.modern-swiper {
	width: 100%;
	/*height: calc(100vh - 100px); Subtract header height */
	position: relative;
	z-index: 1;
}

.modern-swiper .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding-bottom: 70px;
    padding-top: 20px;
}

/* Slide Background with Ken Burns Zoom In/Out Effect */
@keyframes kenburns {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.15);
	}
	100% {
		transform: scale(1);
	}
}

.slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transform: scale(1);
}

.swiper-slide-active .slide-bg {
	animation: kenburns 8s ease-in-out forwards;
}

/* Modern Gradient Overlay */
.slide-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, 
		rgba(82, 40, 17, 0.9) 0%, 
		rgba(139, 69, 19, 0.85) 50%, 
		rgba(216, 172, 39, 0.75) 100%);
	z-index: 1;
}

/* Animated Background Shapes */
.shape {
	position: absolute;
	z-index: 2;
	opacity: 0.1;
}

.shape-1 {
	width: 400px;
	height: 400px;
	background: linear-gradient(45deg, #fff, transparent);
	border-radius: 50%;
	top: -100px;
	right: -100px;
	animation: float 20s infinite ease-in-out;
}

.shape-2 {
	width: 300px;
	height: 300px;
	background: linear-gradient(135deg, #fff, transparent);
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	bottom: -50px;
	left: -50px;
	animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	25% { transform: translate(30px, -30px) rotate(5deg); }
	50% { transform: translate(-20px, 20px) rotate(-5deg); }
	75% { transform: translate(20px, 30px) rotate(3deg); }
}

/* Slide Content Container */
.slide-content-wrapper {
	position: relative;
	z-index: 10;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 80px;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 60px;
}

/* Text Content */
.slide-text-content {
	flex: 1;
	max-width: 650px;
}

/* Modern Badge */
.modern-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(216, 172, 39, 0.25);
	backdrop-filter: blur(10px);
	padding: 10px 24px;
	border-radius: 50px;
	border: 1px solid rgba(216, 172, 39, 0.4);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 30px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	animation: slideUp 0.8s ease-out 0.2s both;
}

.badge-icon {
	width: 8px;
	height: 8px;
	background: #d8ac27;
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.3); }
}

/* Modern Title */
.modern-title {
	font-size: 72px;
	font-weight: 700;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 25px;
	letter-spacing: -2px;
	animation: slideUp 0.8s ease-out 0.4s both;
}

.title-gradient {
	background: linear-gradient(to right, #fff, #d8ac27);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Modern Description */
.modern-description {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
	margin-bottom: 35px;
	font-weight: 400;
	animation: slideUp 0.8s ease-out 0.6s both;
}

/* Modern Stats */
.modern-stats {
	display: flex;
	gap: 40px;
	margin-bottom: 40px;
	animation: slideUp 0.8s ease-out 0.8s both;
}

.stat-item {
	display: flex;
	flex-direction: column;
}

.stat-number {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 5px;
}

.stat-label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Modern Buttons */
.modern-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	animation: slideUp 0.8s ease-out 1s both;
}

.modern-btn {
	padding: 18px 40px;
	border-radius: 16px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.modern-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(216, 172, 39, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.modern-btn:hover::before {
	width: 300px;
	height: 300px;
}

.modern-btn span {
	position: relative;
	z-index: 1;
}

.btn-primary-modern {
	background: #d8ac27;
	color: #522811;
	box-shadow: 0 10px 40px rgba(216, 172, 39, 0.3);
}

.btn-primary-modern:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 50px rgba(216, 172, 39, 0.4);
	background: #f0c030;
}

.btn-secondary-modern {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: #fff;
	transform: translateY(-3px);
}

/* Slide Image Content */
.slide-image-content {
	flex: 1;
	position: relative;
	animation: slideUp 0.8s ease-out 0.5s both;
}

.modern-image-wrapper {
	position: relative;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}

.floating-card {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px);
	border-radius: 30px;
	padding: 40px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
	animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-20px); }
}

.card-image {
	width: 100%;
	height: 300px;
	border-radius: 20px;
	object-fit: cover;
	margin-bottom: 25px;
}

.card-info {
	color: #fff;
}

.card-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 12px;
}

.card-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.card-rating {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 16px;
}

.card-price {
	font-size: 28px;
	font-weight: 700;
}

/* Animations */
@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Modern Navigation */
.swiper-button-next,
.swiper-button-prev {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: #fff;
	transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 20px;
	font-weight: 900;
}

/* Modern Pagination */
.swiper-pagination {
	bottom: 40px !important;
}

.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
	width: 40px;
	border-radius: 6px;
	background: #fff;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.slide-content-wrapper {
		padding: 0 50px;
		gap: 40px;
	}

	.modern-title {
		font-size: 56px;
	}
}

@media (max-width: 992px) {
	.slide-content-wrapper {
		flex-direction: column;
		text-align: center;
		padding: 80px 40px;
	}

	.slide-text-content {
		max-width: 100%;
	}

	.modern-title {
		font-size: 48px;
	}

	.modern-stats {
		justify-content: center;
	}

	.modern-buttons {
		justify-content: center;
	}

	.modern-image-wrapper {
		max-width: 500px;
	}
}

@media (max-width: 768px) {
	.modern-swiper {
		height: auto;
		min-height: 100vh;
	}

	.slide-content-wrapper {
		padding: 60px 30px;
	}

	.modern-title {
		font-size: 40px;
		letter-spacing: -1px;
	}

	.modern-description {
		font-size: 18px;
	}

	.modern-stats {
		flex-wrap: wrap;
		gap: 20px;
	}

	.stat-number {
		font-size: 28px;
	}

	.modern-buttons {
		flex-direction: column;
		width: 100%;
	}

	.modern-btn {
		width: 100%;
		justify-content: center;
	}

	.swiper-button-next,
	.swiper-button-prev {
		width: 50px;
		height: 50px;
	}

	.card-image {
		height: 300px;
	}
}

@media (max-width: 576px) {
	.modern-title {
		font-size: 32px;
	}

	.modern-description {
		font-size: 16px;
	}

	.swiper-button-next,
	.swiper-button-prev {
		display: none;
	}
}
