/* ==========================================================
   TOOR360 HERO
   ========================================================== */

.toor360-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background-color: #050505;
	background-size: cover;
	background-position: center;
	color: #ffffff;
}


/* Background Video */

.toor360-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}


/* Dark Overlay */

.toor360-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;

	background:
		linear-gradient(
			90deg,
			rgba(0, 0, 0, 0.88) 0%,
			rgba(0, 0, 0, 0.60) 50%,
			rgba(0, 0, 0, 0.35) 100%
		);
}


/* Container */

.toor360-hero__container {
	position: relative;
	z-index: 2;

	width: min(1400px, calc(100% - 80px));
	margin: 0 auto;
}


/* Content */

.toor360-hero__content {
	max-width: 850px;
	padding: 120px 0;
}


/* Tag */

.toor360-hero__tag {
	display: flex;
	align-items: center;
	gap: 12px;

	margin-bottom: 25px;

	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}


/* Tag Line */

.toor360-hero__tag-line {
	display: block;
	width: 45px;
	height: 2px;
	background: #dfff00;
}


/* Title */

.toor360-hero__title {
	margin: 0;

	font-size: clamp(48px, 7vw, 100px);
	line-height: 0.95;
	font-weight: 800;
	letter-spacing: -0.05em;
}


/* Highlight */

.toor360-hero__highlight {
	display: block;

	color: #dfff00;
}


/* Description */

.toor360-hero__description {
	max-width: 650px;

	margin: 35px 0 0;

	font-size: 18px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
}


/* Buttons */

.toor360-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;

	margin-top: 40px;
}


/* Button */

.toor360-btn {
	display: inline-flex;
	align-items: center;
	gap: 15px;

	padding: 17px 25px;

	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;

	text-decoration: none;

	transition:
		transform 0.3s ease,
		background 0.3s ease,
		color 0.3s ease;
}


/* Primary */

.toor360-btn--primary {
	background: #dfff00;
	color: #000000;
}


/* Outline */

.toor360-btn--outline {
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #ffffff;
}


/* Hover */

.toor360-btn:hover {
	transform: translateY(-3px);
}

.toor360-btn--primary:hover {
	background: #ffffff;
	color: #000000;
}

.toor360-btn--outline:hover {
	background: #ffffff;
	color: #000000;
}


/* Arrow */

.toor360-btn__arrow {
	font-size: 18px;
}


/* Scroll */

.toor360-hero__scroll {
	position: absolute;
	right: 40px;
	bottom: 40px;

	z-index: 3;

	display: flex;
	align-items: center;
	gap: 15px;

	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.15em;

	transform: rotate(-90deg);
	transform-origin: right bottom;
}


/* Scroll Line */

.toor360-hero__scroll-line {
	width: 60px;
	height: 1px;
	background: #dfff00;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media ( max-width: 768px ) {

	.toor360-hero__container {
		width: min(100% - 40px, 1400px);
	}

	.toor360-hero__content {
		padding: 100px 0 80px;
	}

	.toor360-hero__title {
		font-size: clamp(44px, 13vw, 70px);
	}

	.toor360-hero__description {
		font-size: 16px;
	}

	.toor360-hero__buttons {
		flex-direction: column;
		align-items: flex-start;
	}

	.toor360-btn {
		width: auto;
	}

	.toor360-hero__scroll {
		display: none;
	}

}