/* Luxury Section */
.home-luxury {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 40px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

/* Blurred background overlay */
.home-luxury::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	background-size: cover;
	background-position: center;
	filter: blur(20px);
	transform: scale(1.1);
	z-index: 1;
}

.home-luxury__container {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-luxury__image-wrapper {
	position: relative;
	max-width: 650px;
	width: 100%;
	display: inline-block;
}

.home-luxury__image {
	width: 100%;
	height: auto;
	display: block;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Text positioned absolutely relative to image */
.home-luxury__text {
	position: absolute;
	color: #ffffff;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
	z-index: 3;
	line-height: 1;
	margin: 0;
}

/* Top left text (LUXURY) */
.home-luxury__text--top {
	top: -30px;
	left: -120px;
	font-family: 'Arches';
	font-size: 80px;
	font-weight: 300;
	letter-spacing: 8px;
	text-transform: uppercase;
}

/* Bottom right text (Metal - cursive) */
.home-luxury__text--bottom {
	bottom: -30px;
	right: -80px;
	font-family: 'BlostaScript';
	font-size: 120px;
	letter-spacing: 2px;
}

/* Tablet breakpoint */
@media screen and (max-width: 1024px) {
	.home-luxury__text--top {
		font-size: 60px;
		top: 30px;
		left: -80px;
		letter-spacing: 6px;
	}

	.home-luxury__text--bottom {
		font-size: 90px;
		bottom: 20px;
		right: -60px;
	}
}

/* Small tablet breakpoint */
@media screen and (max-width: 768px) {
	.home-luxury {
		padding: 60px 30px;
	}

	.home-luxury__image-wrapper {
		max-width: 500px;
	}

	.home-luxury__text--top {
		font-size: 50px;
		top: 20px;
		left: -50px;
		letter-spacing: 4px;
	}

	.home-luxury__text--bottom {
		font-size: 70px;
		bottom: 15px;
		right: -40px;
	}
}

/* Mobile breakpoint */
@media screen and (max-width: 600px) {
	.home-luxury {
		padding: 40px 20px;
	}

	.home-luxury__image-wrapper {
		max-width: 100%;
	}

	.home-luxury__text--top {
		font-size: 36px;
		top: 10px;
		left: 10px;
		letter-spacing: 3px;
	}

	.home-luxury__text--bottom {
		font-size: 50px;
		bottom: 10px;
		right: 10px;
	}
}

/* Extra small mobile */
@media screen and (max-width: 480px) {
	.home-luxury__text--top {
		font-size: 28px;
		letter-spacing: 2px;
	}

	.home-luxury__text--bottom {
		font-size: 40px;
	}
}
