/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/



/* ----------------------------------------------------------------
	Top Bar Overrides
-----------------------------------------------------------------*/

#top-bar {
	background: linear-gradient(135deg, #2c3e50 0%, #3c5165 100%);
	border-bottom: 2px solid #c0392b;
	height: auto;
	line-height: 1;
	padding: 0;
}

.top-bar-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	padding: 10px 0;
}

.top-bar-tagline {
	color: rgba(255, 255, 255, 0.85);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.top-bar-divider {
	width: 1px;
	height: 14px;
	background: rgba(255, 255, 255, 0.3);
	margin: 0 18px;
}

.top-bar-phone {
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.top-bar-phone i {
	margin-right: 4px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
}

.top-bar-phone a {
	color: #fff;
	text-decoration: none;
	transition: color 0.2s ease;
}

.top-bar-phone a:hover {
	color: #e74c3c;
}

/* Tablet & small desktop */
@media (max-width: 991.98px) {
	.top-bar-content {
		flex-wrap: wrap;
		gap: 4px 0;
		padding: 8px 0;
		text-align: center;
	}

	.top-bar-tagline {
		font-size: 11px;
		letter-spacing: 1.5px;
	}

	.top-bar-phone {
		font-size: 12px;
	}

	.top-bar-divider {
		margin: 0 12px;
	}
}

/* Mobile */
@media (max-width: 575.98px) {
	.top-bar-content {
		flex-direction: column;
		gap: 2px;
		padding: 8px 0;
	}

	.top-bar-divider {
		display: none;
	}

	.top-bar-tagline {
		font-size: 10px;
		letter-spacing: 1.5px;
	}

	.top-bar-phone {
		font-size: 12px;
	}
}


