/* ==========================================================================
   Home Hero module
   ========================================================================== */
.hero {
	position: relative;
	min-height: 640px;
	overflow: hidden;
	background: var(--navy);
	padding: 120px 0 80px;
}
.hero .hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 25%;
	background-repeat: no-repeat;
}

.hero .container {
	margin-right: auto;
}
.hero .hero-content {
	position: relative;
	z-index: 2;
	max-width: 840px;
	border-radius: var(--radius-lg);
	padding: 90px 60px;
	animation: heroFadeIn 0.9s ease forwards;
	background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.65) 30%, rgba(255,255,255,0.45) 75%, rgba(255,255,255,0.2) 100%);
	background: linear-gradient(135deg, rgba(10, 35, 66, 0.92) 0%, rgba(10, 35, 66, 0.80) 45%, rgba(10, 35, 66, 0.28) 100%);
}

@keyframes heroFadeIn {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Badge is shared visually between Home Hero and Page Hero; defined once
   here since both modules' CSS load on every page (see inc/enqueue.php). */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(201, 150, 58, 0.2);
	border: 1px solid var(--gold);
	color: var(--gold-light);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 7px 18px;
	border-radius: 100px;
	margin-bottom: 24px;
}

.hero h2 {
	font-family: var(--font-display);
	font-size: 3.4rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.18;
	margin-bottom: 22px;
}
.hero h2 em {
	font-style: italic;
	color: var(--gold-light);
}
.hero .hero-desc {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.65;
	margin-bottom: 38px;
	max-width: 640px;
}
.cta-group {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

@media (max-width: 680px) {
	.hero h2 {
		font-size: 2.2rem;
	}
}
