.angie-hero-container {
	padding: 80px 20px;
	position: relative;
	min-height: 80vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #32133e; /* Fallback */
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.angie-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.angie-hero-content {
	max-width: 800px;
	margin: 0 auto;
	width: 100%;
	position: relative;
	z-index: 2;
}

.angie-hero-back-link {
	margin-bottom: 30px;
	display: flex;
	align-items: center;
}

.angie-hero-back-link a {
	text-decoration: none;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: opacity 0.3s;
}

.angie-hero-back-link a:hover {
	opacity: 0.8;
}

.angie-hero-subtitle {
	margin: 0 0 5px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
}

.angie-hero-social {
	font-size: 14px;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.angie-hero-badge-wrapper {
	margin-bottom: 25px;
}

.angie-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border: 1px solid;
	border-radius: 50px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.angie-hero-badge-dot {
	font-size: 10px;
}

.angie-hero-title {
	margin: 0 0 20px;
	font-size: 64px;
	font-weight: 700;
	line-height: 1.1;
	display: flex;
	flex-direction: column;
}

.angie-hero-title-part-1,
.angie-hero-title-part-2 {
	display: block;
}

.angie-hero-description {
	margin: 0 0 40px;
	font-size: 18px;
	line-height: 1.6;
	max-width: 600px;
}

.angie-hero-button-wrapper {
	margin-bottom: 40px;
}

.angie-hero-button {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: transform 0.2s;
}

.angie-hero-button:hover {
	transform: translateY(-2px);
}

.angie-hero-scroll {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	opacity: 0.5;
	z-index: 2;
	animation: angie-jump-slow 3s infinite ease-in-out;
}

.angie-hero-scroll-text {
	font-size: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff;
}

.angie-hero-scroll-line {
	width: 1px;
	height: 40px;
	background-color: #fff;
}

/* Animations */
@keyframes angie-jump-slow {
	0%, 100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(15px); /* Move DOWN, not UP for scroll indicator */
	}
}

/* Responsive */
@media (max-width: 768px) {
	.angie-hero-title {
		font-size: 42px;
	}
	
	.angie-hero-description {
		font-size: 16px;
	}
	
	.angie-hero-container {
		padding: 60px 20px;
	}
}
