/* ========================================
   Button Base Styles
   ======================================== */

.btn {
	display: inline-block;
	padding: 12px 18px;
	border-radius: 14px;
	border: 1px solid transparent;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.2s ease;
	line-height: 1.5;
}

.btn:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

/* ========================================
   Primary Button (Accent Green)
   For main CTAs and primary actions
   ======================================== */

.btn-primary,
.btn-accent {
background: #0EA5E9;
color: #fff;
border-color: #0EA5E9;
}

.btn-primary:hover,
.btn-accent:hover {
background: var(--accent);
border-color: var(--accent);
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

.btn-primary:active,
.btn-accent:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(14, 165, 233, 0.2);
}

/* ========================================
   Secondary Button (Ghost/Outline)
   For secondary actions and alternatives
   ======================================== */

.btn-secondary,
.btn-ghost {
	background: transparent;
	color: var(--accent);
	border-color: var(--accent);
}

.btn-secondary:hover,
.btn-ghost:hover {
	background: var(--accent);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}

.btn-secondary:active,
.btn-ghost:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(14, 165, 233, 0.1);
}

