/**
 * About Contact page — Hero section.
 * Brand colors: #3b82f6 (primary), #10b981 (accent), #f59e0b (highlight).
 * Heading font: Inter. Body font: Roboto.
 */

.about-contact-hero {
	--about-contact-hero-primary: #3b82f6;
	--about-contact-hero-accent: #10b981;
	--about-contact-hero-highlight: #f59e0b;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60vh;
	padding: clamp(4rem, 10vw, 7rem) 1.5rem;
	overflow: hidden;
	background-image:
		radial-gradient(circle at 18% 22%, rgba(59, 130, 246, 0.38), transparent 45%),
		radial-gradient(circle at 82% 18%, rgba(245, 158, 11, 0.28), transparent 40%),
		linear-gradient(135deg, #0f172a 0%, #1e3a8a 55%, #1d4ed8 100%);
	color: #ffffff;
	text-align: center;
}

.about-contact-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.55) 100%);
	z-index: 1;
}

.about-contact-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
}

.about-contact-hero__eyebrow {
	margin: 0;
	font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--about-contact-hero-highlight);
}

.about-contact-hero__heading {
	margin: 0;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: clamp(2.25rem, 6vw, 3.75rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #ffffff;
}

.about-contact-hero__subheading {
	margin: 0;
	max-width: 620px;
	font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: clamp(1.05rem, 2.2vw, 1.25rem);
	line-height: 1.6;
	color: rgba(241, 245, 249, 0.92);
}

.about-contact-hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-top: 0.75rem;
}

.about-contact-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.85rem;
	border-radius: 9999px;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	line-height: 1;
	border: 2px solid transparent;
	transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease, color 200ms ease;
}

.about-contact-hero__btn--primary {
	background-color: var(--about-contact-hero-accent);
	color: #04231a;
	box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
}

.about-contact-hero__btn--primary:hover,
.about-contact-hero__btn--primary:focus-visible {
	transform: translateY(-2px);
	background-color: #0ea472;
	box-shadow: 0 14px 30px rgba(16, 185, 129, 0.45);
}

.about-contact-hero__btn--secondary {
	background-color: transparent;
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.7);
}

.about-contact-hero__btn--secondary:hover,
.about-contact-hero__btn--secondary:focus-visible {
	transform: translateY(-2px);
	background-color: #ffffff;
	color: #1d4ed8;
	border-color: #ffffff;
}

.about-contact-hero__btn:focus-visible {
	outline: 3px solid var(--about-contact-hero-highlight);
	outline-offset: 3px;
}

/* Moderate entrance animation. */
@media (prefers-reduced-motion: no-preference) {
	.about-contact-hero__inner > * {
		opacity: 0;
		transform: translateY(16px);
		animation: about-contact-hero-fade-in 600ms ease forwards;
	}

	.about-contact-hero__eyebrow { animation-delay: 60ms; }
	.about-contact-hero__heading { animation-delay: 150ms; }
	.about-contact-hero__subheading { animation-delay: 260ms; }
	.about-contact-hero__actions { animation-delay: 370ms; }

	@keyframes about-contact-hero-fade-in {
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
}

/* Tablet */
@media (max-width: 768px) {
	.about-contact-hero {
		min-height: 55vh;
	}
}

/* Mobile */
@media (max-width: 480px) {
	.about-contact-hero {
		min-height: 50vh;
		padding: 3.5rem 1.25rem;
	}

	.about-contact-hero__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.about-contact-hero__btn {
		width: 100%;
	}
}
