/**
 * Regional Prestige Concierge - Hero Section
 * 
 * Full-screen hero banner with headline and CTA
 */

/* ============================================================================
   HERO SECTION
   ============================================================================ */

#hero-masthead {
	min-height: 100vh;
	background-color: #0A0A19;
	background-image: url('../assets/images/carhero.svg');
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	transform: none !important;
}

/* Gradient overlay for hero section */
#hero-masthead::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 0%, transparent 20%, rgba(0, 0, 0, .3) 40%, #060C26 100%);
}

.hero-overlay {
	position: relative;
	z-index: 2;
	padding: 4rem 2rem;
	max-width: 1200px;
}

.hero-headline {
	font-size: clamp(2.5rem, 8vw, 4.5rem);
	font-weight: 300;
	line-height: 1.1;
	margin-bottom: 2rem;
	font-family: 'Playfair Display', serif;
}

.hero-cta {
	border: 1px solid var(--gold);
	padding: 16px 40px;
	font-size: 16px;
	letter-spacing: 2px;
	text-decoration: none;
	display: inline-block;
	color: #FFF;
	text-transform: uppercase;
	transition: all .4s ease;
	position: relative;
	overflow: hidden;
}

/* Circular expand effect on hero CTA hover */
.hero-cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: var(--gold);
	transform: translate(-50%, -50%);
	transition: width .6s ease, height .6s ease;
	z-index: -1;
}

.hero-cta:hover::before {
	width: 400px;
	height: 400px;
}

.hero-cta:hover {
	color: #0A0A19;
}

