
/* Button CSS */
.theme-btn {
	position: relative;
	overflow: hidden;
	border: none;
	cursor: pointer;
	color: var(--bs-white);
	padding: 10px 20px;
	border-radius: 12px;
	backdrop-filter: blur(10px);
	font-family: var(--theme-font);
	-webkit-backdrop-filter: blur(10px);
	background-color: var(--theme-primary-color);
	box-shadow: 0 2px 5px var(--theme-primary-color);
	transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.theme-btn-shine {
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	filter: blur(8px);
	transition: left 0.4s ease-in-out;
	background: linear-gradient( 90deg, transparent,var(--section-color), transparent );
}
.theme-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 3px 8px var(--theme-primary-color);
}
.theme-btn:hover .theme-btn-shine {
	left: 100%;
}
.theme-btn .theme-btn-text {
	z-index: 2;
	color: var(--bs-white);
	font-weight: 500;
}
