/*Hero Section*/
.container:has(.hero-section) {
	padding: 0 !important;
	max-width: 100vw !important;
}
.hero-section {
	position: relative;
	height: 60vh;
	min-height: 350px;
	overflow: hidden;
}
.hero-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
}
.hero-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
}
.hero-subtitle {
	font-size: 0.75rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 1rem;
	opacity: 0.9;
}
.hero-title {
	font-size: clamp(2.5rem, 8vw, 4.5rem);
	margin-bottom: 2rem;
	text-shadow: 0 2px 4px rgba(0,0,0,0.2);
	color: currentColor;
}
.btn-luxury {
	background-color: white;
	color: black;
	border: none;
	border-radius: 0;
	padding: 0.75rem 2.5rem;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	transition: all 0.3s ease;
}
.btn-luxury:hover {
	background-color: #f0f0f0;
	transform: scale(1.05);
}