/**
 * InnerBanner Component Styles
 * 
 * Styles for the inner page banner component with title, background image, and optional centered logo
 */

.inner-banner-section {
	position: relative;
	width: 100%;
	margin-top: 100px;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.inner-banner-section::after {
	/* position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0) 0%,
			hsla(212, 100%, 19%, 0.4) 100%);
	z-index: 2; */
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 70%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
	z-index: 1;
	pointer-events: none;
}

.inner-banner-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.inner-banner-background.desktop {
	display: block;
}

.inner-banner-background.mobile {
	display: none;
}

.inner-banner-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.inner-banner-content {
	position: relative;
	width: 100%;
	z-index: 3;
	display: flex;
	align-items: end;
	text-align: center;
	padding-top: 80px;
	padding-bottom: 80px;
	min-height: inherit;
}

.inner-banner-logo {
	margin-bottom: 30px;
	opacity: 0;
	animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.inner-banner-logo-img {
	max-width: 200px;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.inner-banner-title {
	color: #ffffff;
	font-family: var(--font-bold, "Raleway-Bold", sans-serif);
	/* font-size: 48px; */

	line-height: 1.2;
	font-weight: 700;
	margin: 0;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

@media (min-resolution: 105dpi) {
	.inner-banner-section {
		min-height: 500px;
	}
}

@media (min-resolution: 115dpi) {
	.inner-banner-section {
		min-height: 450px;
	}
}

@media (max-width: 1280px) {
	.inner-banner-section {
		margin-top: 95px;

		min-height: 400px;
	}

	.inner-banner-content {
		min-height: 350px;
		padding: 60px 3%;
	}

	.inner-banner-logo-img {
		max-width: 180px;
	}
}

@media (max-width: 768px) {
	.inner-banner-section {
		min-height: 300px;
	}

	.inner-banner-content {
		min-height: 300px;
		padding: 50px 3%;
	}

	.inner-banner-logo {
		margin-bottom: 20px;
	}

	.inner-banner-logo-img {
		max-width: 150px;
	}
}

@media (max-width: 700px) {
	.inner-banner-background.desktop {
		display: none;
	}

	.inner-banner-background.mobile {
		display: block;
	}

	.inner-banner-section {
		margin-top: 85px;
		min-height: 250px;
	}

	.inner-banner-content {
		min-height: 250px;
		padding: 40px 3%;
	}

	.inner-banner-logo-img {
		max-width: 120px;
	}
}

/* Animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}