/* ==========================================================================
   Home — Front page sections
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
	position: relative;
	width: 100%;
	height: 832px;
	overflow: hidden;
}

.hero__image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.15);
}

.hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: var(--space-xl) var(--header-padding-x);
}

/* --------------------------------------------------------------------------
   Hero — Pills
   -------------------------------------------------------------------------- */

.hero__pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
	margin-bottom: var(--space-lg);
}

.hero__pill {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 8px;
	background-color: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	-webkit-backdrop-filter: var(--glass-blur);
	border: none;
	border-top: 1px solid var(--glass-border);
	border-radius: var(--radius-sm);
	box-shadow: var(--glass-shadow);
}

.hero__pill-dot {
	display: flex;
	align-items: center;
	width: 4px;
	height: 4px;
}

.hero__pill-dot svg {
	width: 4px;
	height: 4px;
}

.hero__pill-text {
	font-family: var(--font-body);
	font-weight: var(--font-weight-medium);
	font-size: var(--text-xs);
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: 0;
	color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Hero — Title
   -------------------------------------------------------------------------- */

.hero__title {
	font-family: var(--font-display);
	font-weight: var(--font-weight-book);
	font-size: 80px;
	line-height: 1;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: center;
	color: var(--color-white);
	max-width: 1002px;
}

/* --------------------------------------------------------------------------
   Hero — Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
	.hero {
		height: 100vh;
		height: 100svh;
	}

	.hero__content {
		padding: var(--space-xl) var(--space-sm);
	}

	.hero__title {
		font-size: 40px;
		letter-spacing: 0.04em;
		max-width: 100%;
	}

	.hero__pill-text {
		font-size: 10px;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.hero__title {
		font-size: 56px;
		max-width: 700px;
	}
}
