@charset "utf-8";
/* CSS Document */
/* ==========================================================================
   Hero Scroll Indicator
   ========================================================================== */

.tc-hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 2rem;

	transform: translateX(-50%);

	z-index: 20;

	display: flex;
	justify-content: center;
	align-items: center;
}

/* ==========================================================================
   Scroll Link
   ========================================================================== */

.tc-scroll-indicator {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;

	text-decoration: none;

	color: var(--tc-text-light);

	transition:
		color .3s ease,
		transform .3s ease;
}

.tc-scroll-indicator:hover {
	color: var(--tc-primary);
	transform: translateY(-2px);
}

/* ==========================================================================
   Scroll Text
   ========================================================================== */

.tc-scroll-indicator__text {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	opacity: 0.8;
}

/* ==========================================================================
   Scroll Icon
   ========================================================================== */

.tc-scroll-indicator__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 44px;
	height: 44px;

	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 50%;

	background: rgba(255, 255, 255, 0.85);

	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);

	box-shadow:
		0 10px 25px rgba(15, 23, 42, 0.08);

	animation: tcScrollBounce 2.2s ease-in-out infinite;
}

.tc-scroll-indicator__icon svg {
	width: 20px;
	height: 20px;
}

/* ==========================================================================
   Bounce Animation
   ========================================================================== */

@keyframes tcScrollBounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(8px);
	}

}

/* ==========================================================================
   Focus State
   ========================================================================== */

.tc-scroll-indicator:focus-visible {
	outline: none;
}

.tc-scroll-indicator:focus-visible .tc-scroll-indicator__icon {
	box-shadow:
		0 0 0 4px rgba(236, 105, 31, 0.18),
		0 0 0 7px rgba(236, 105, 31, 0.08);
}

/* ==========================================================================
   Tablet
   ========================================================================== */

@media (max-width: 991px) {

	.tc-hero__scroll {
		bottom: 1.5rem;
	}

}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 767px) {

	.tc-hero__scroll {
		position: static;
		transform: none;
		margin-top: 2rem;
	}

	.tc-scroll-indicator__text {
		font-size: 0.6875rem;
		letter-spacing: 0.14em;
	}

	.tc-scroll-indicator__icon {
		width: 40px;
		height: 40px;
	}

	.tc-scroll-indicator__icon svg {
		width: 18px;
		height: 18px;
	}

}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

	.tc-scroll-indicator,
	.tc-scroll-indicator__icon {
		animation: none;
		transition: none;
	}

	.tc-scroll-indicator:hover {
		transform: none;
	}

}
