/* Custom Logo Styling */
.logo-container {
	max-height: 50px;
	display: flex;
	align-items: center;
}

.custom-logo {
	max-height: 50px;
	width: auto;
	height: auto;
	display: block;
}

@media (max-width: 640px) {
	.logo-container {
		max-height: 40px;
	}

	.custom-logo {
		max-height: 40px;
	}
}

[x-cloak] {
	display: none !important;
}

#primary-menu-mobile {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0;
}

#primary-menu-mobile li {
	display: block !important;
	margin: 0 !important;
	border: none !important;
	width: 100%;
}

#primary-menu-mobile a {
	display: flex !important;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem !important;
	font-family: inherit;
	font-size: 22px !important;
	line-height: 1.25rem !important;
	font-weight: 500;
	color: rgb(209, 213, 219);
	transition: all 0.2s ease;
	border-radius: 0.5rem;
	position: relative;
	text-align: left !important;
}

#primary-menu-mobile a:hover {
	color: #ffffff !important;
	background-color: rgba(255, 255, 255, 0.05);
	text-decoration: none;
}

#primary-menu-mobile a::after {
	display: none;
}
#primary-menu-mobile a.active,
#primary-menu-mobile a:hover,
#primary-menu-mobile a.active span,
#primary-menu-mobile a:hover span {
	color: #00B29D !important;
}
#primary-menu-mobile a.active svg,
#primary-menu-mobile a:hover svg {
	stroke: #00B29D !important;
}
/* #primary-menu-mobile a::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3Cpolyline points='12 5 19 12 12 19'%3E%3C/polyline%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: all 0.2s ease;
	opacity: 0.6;
}

#primary-menu-mobile a:hover::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300B29D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3Cpolyline points='12 5 19 12 12 19'%3E%3C/polyline%3E%3C/svg%3E");
	opacity: 1;
} */

/* Header hover effects */
.desktop-nav a {
	position: relative;
}

.desktop-nav a span:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: #00B29D;
	transition: width 0.3s;
}

.desktop-nav a:hover span::after {
	width: 100%;
}
a.group.flex.items-center.gap-3.px-3.py-2\.5.text-gray-300.hover\:text-white.hover\:bg-white\/10.rounded-xl.transition-all.duration-200.relative.overflow-hidden.hover\:scale-\[1\.02\].active\:scale-\[0\.98\] {
    color: #fff;
}
#primary-menu-mobile a.active:before {
	color: #00B29D;
}
.admin-bar header#masthead.sticky {
    top: 32px;
}
@media (max-width: 1024px) {
	.admin-bar header#masthead.sticky {
		top: 32px;
	}
}
@media (max-width: 767px) {
	.admin-bar header#masthead.sticky {
		top: 0px;
	}
}
/* Mobile menu animations */
@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

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

@keyframes blob {
	0% {
		transform: translate(0px, 0px) scale(1);
	}

	33% {
		transform: translate(30px, -50px) scale(1.1);
	}

	66% {
		transform: translate(-20px, 20px) scale(0.9);
	}

	100% {
		transform: translate(0px, 0px) scale(1);
	}
}
