/**
 * 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%;
	min-height: 600px;
	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;
}

.inner-banner-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.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;
}

/* Responsive Styles */
@media (max-width: 1200px) {
	.inner-banner-section {
		min-height: 350px;
	}

	.inner-banner-content {
		min-height: 350px;
		padding: 60px 3%;
	}

	.inner-banner-title {
		font-size: 42px;
	}

	.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-title {
		font-size: 32px;
	}

	.inner-banner-logo {
		margin-bottom: 20px;
	}

	.inner-banner-logo-img {
		max-width: 150px;
	}
}

@media (max-width: 480px) {
	.inner-banner-section {
		min-height: 250px;
	}

	.inner-banner-content {
		min-height: 250px;
		padding: 40px 3%;
	}

	.inner-banner-title {
		font-size: 28px;
	}

	.inner-banner-logo-img {
		max-width: 120px;
	}
}

/* Animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}