.hero-banner {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	background: #0f3a5e;
}

.hero-banner__media,
.hero-banner__overlay,
.hero-banner__content {
	position: absolute;
	inset: 0;
}

.hero-banner__media {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-banner__media--image {
	position: absolute;
	inset: 0;
	background-image: url(/banner/assets/andeanpeaks_23.webp);
	background-size: cover;
	background-position: center;
}

.hero-banner__overlay {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.68) 0%, rgba(10, 26, 40, 0.35) 52%, rgba(15, 58, 94, 0.18) 100%);
}

.hero-banner__content {
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-banner__inner {
	min-height: 11rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.hero-banner__title,
.hero-banner__description,
.hero-banner__action {
	opacity: 0;
	animation-name: hero-banner-rise;
	animation-duration: 0.9s;
	animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
	animation-fill-mode: forwards;
}

.hero-banner__title {
    margin: 0;
    margin-inline: auto;
    font-family: "Poppins", "Poppins Fallback", "Segoe UI", Arial, sans-serif;
    font-size-adjust: 0.52;
    font-size: 40px;
    font-weight: 600;
    line-height: 44px;
    min-height: 2.8rem;
    color: rgba(255, 255, 255, 1);
    animation-delay: 0.12s;
    text-transform: inherit;
    text-wrap: balance;
}

.hero-banner__description {		
	margin-inline: auto;
	font-family: "Poppins", "Poppins Fallback", "Segoe UI", Arial, sans-serif;
	font-size-adjust: 0.5;
	font-size: 20px;
	font-weight: 500;
	line-height: 20px;
	color: #fff;
	animation-delay: 0.34s;
	margin-top: 15px !important; 
	margin-bottom: 0px !important; 

}

.hero-banner__action {
	display: inline-block;
	margin-top: 2rem;
	padding: 0.95rem 2.2rem;
	border-radius: 999px;
	background: #0f3a5e;
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-decoration: none;
	text-transform: uppercase;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
	transition: background-color 0.2s ease, transform 0.2s ease;
	animation-delay: 0.56s;
}

.hero-banner__action:hover,
.hero-banner__action:focus {
	background: #f77f3c;
	color: #fff;
	transform: translateY(-2px);
}

@keyframes hero-banner-rise {
	from {
		opacity: 0;
		transform: translateY(100%);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-banner__title,
	.hero-banner__description,
	.hero-banner__action {
		opacity: 1;
		animation: none;
	}
}

@media (max-width: 768px) {
	.hero-banner {
		min-height: 82vh;
	}

	.hero-banner__content {
		padding: 6.75rem 1.25rem 2.5rem;
	}

	.hero-banner__title {
		font-size: clamp(2rem, 7vw, 2.8rem);
		line-height: 1.12;
	}

	.hero-banner__description {
		margin-top: 1rem;
		font-size: clamp(1rem, 3.5vw, 1.25rem);
		line-height: 1.4;
	}

	.hero-banner__action {
		margin-top: 1.5rem;
		padding: 0.95rem 1.75rem;
		font-size: 0.95rem;
		letter-spacing: 0.04em;
		text-align: center;
		white-space: nowrap;
		width: min(100%, 18rem);
	}
}

@media (max-width: 1024px) and (min-width: 769px) {
	.hero-banner {
		min-height: 88vh;
	}

	.hero-banner__content {
		padding: 7rem 2rem 3rem;
	}

	.hero-banner__title {
		font-size: clamp(2.8rem, 5vw, 3.4rem);
	}

	.hero-banner__description {
		font-size: clamp(1.1rem, 2.2vw, 1.45rem);
	}

	.hero-banner__action {
		padding: 0.95rem 2rem;
		font-size: 0.96rem;
	}
}

@media (max-width: 480px) {
	.hero-banner {
		min-height: 78vh;
	}

	.hero-banner__content {
		padding: 6.25rem 1rem 2rem;
	}

	.hero-banner__inner {
		width: 100%;
		min-height: 12.5rem;
	}

	.hero-banner__title {
		font-size: 1.85rem;
		line-height: 1.12;
	}

	.hero-banner__description {
		font-size: 0.98rem;
		line-height: 1.45;
	}

	.hero-banner__action {
		width: 100%;
		max-width: 16.5rem;
		padding: 0.9rem 1.25rem;
		font-size: 0.9rem;
		line-height: 1.2;
	}
}
