/* Hero - Sección principal */

.iv-hero {
	position: relative;
	min-height: calc(100vh - 100px);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: stretch;
	background-image: url('../../Assets/slider.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-bottom: 140px;
}

.iv-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
	z-index: 1;
}

.iv-hero__background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.iv-hero__content {
	position: relative;
	z-index: 2;
	color: var(--iv-text-white);
	padding: 4rem 0 6rem;
	width: 100%;
}

.iv-hero__title {
	font-size: clamp(2.5rem, 6vw, 6rem);
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0;
	letter-spacing: 0.35em;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
	color: var(--iv-text-white);
	line-height: 1.1;
	text-align: left;
}

.iv-hero__title span {
	color: var(--iv-color-primary);
	font-weight: 700;
}

.iv-hero__subtitle {
	font-size: 1.75rem;
	font-weight: 300;
	font-style: italic;
	color: var(--iv-color-primary);
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
	text-align: right;
	margin-top: 0;
	letter-spacing: 0.05em;
}

.iv-hero__subtitle small {
	font-size: 1.75rem;
	font-weight: 300;
	font-style: italic;
}

.iv-hero__scroll-arrow {
	display: inline-block;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 2.5rem;
	animation: bounce 2.5s infinite;
}

.iv-hero__scroll-arrow img {
	width: 45px;
	height: auto;
	filter: brightness(0) invert(1);
	transform: rotate(90deg);
}

.iv-hero__scroll-arrow:hover {
	animation-play-state: paused;
	transform: translateY(10px);
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0) rotate(90deg);
	}
	40% {
		transform: translateY(-12px) rotate(90deg);
	}
	60% {
		transform: translateY(-6px) rotate(90deg);
	}
}

.iv-hero__search-box {
	position: relative;
	z-index: 10;
}
