/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-secondary-custom {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	min-height: 50px;
	padding: 0.6rem 1.35rem;
	border-radius: 999px;
	font-weight: 600;
	letter-spacing: 0.02em;
	border: none;
	transition: all 0.28s ease;
	cursor: pointer;
	background: linear-gradient(135deg, #e0e5ec 0%, #f8f9fa 100%);
	color: #111111 !important;
	box-shadow:
		5px 5px 12px rgba(0, 0, 0, 0.15),
		-5px -5px 12px rgb(255, 255, 255);
}

.btn-secondary-custom:hover {
	background: linear-gradient(135deg, #ffffff, #2a2a2a);
	box-shadow:
		inset 3px 3px 8px rgba(0, 0, 0, 0.3),
		inset -3px -3px 8px rgba(255, 255, 255, 0.1),
		2px 2px 5px rgba(0, 0, 0, 0.15);
	transform: translateY(2px);
}

.bg-dark .btn-secondary-custom {
	background: linear-gradient(135deg, #2a3545 0%, #1f2937 100%);
	color: #f2f2f2 !important;
	box-shadow:
		5px 5px 12px rgba(0, 0, 0, 0.4),
		-5px -5px 12px rgba(255, 255, 255, 0.05);
}

.bg-dark .btn-secondary-custom:hover {
	color: #ffffff !important;
	box-shadow:
		inset 3px 3px 8px rgba(0, 0, 0, 0.4),
		inset -3px -3px 8px rgba(255, 255, 255, 0.08),
		2px 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-2:hover {
	animation: glow 1s infinite alternate;
}

@keyframes glow {
	from {
		box-shadow: 0 0 5px var(--motif-glow);
	}
	to {
		box-shadow: 0 0 20px var(--motif-glow);
	}
}

.btn-secondary-custom {
	width: 240px;
	height: 50px;
	padding: 0;
	border-radius: 999px;
	margin: 0 auto;
}

.btn-secondary-custom a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 0 1.1rem;
	font-weight: 600;
	border-radius: 999px;
	color: inherit !important;
}

.bg-light .btn-secondary-custom {
	background: transparent;
	color: #111111;
}

.bg-dark .btn-secondary-custom {
	background: transparent;
	color: #f2f2f2;
}

.bg-dark .btn-secondary-custom:hover {
	color: #111111;
}
