/* =====================================
   OWLGO COLORS
===================================== */

:root {
  --sprout-color: #05a55f;
  --builder-color: #f36532;
  --thinking-color: #1477da;
  --wise-color: #73028f;

  --owlgo-green: #2e7d32;
}

/* =====================================
   OWLGO BUTTON SYSTEM
===================================== */

/* ---------- Base ---------- */

.owl-btn {
  display: inline-block;
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease,
    box-shadow 0.15s ease;
}

.owl-btn:hover {
  transform: translateY(-2px);
}

.owl-btn-block {
  width: 100%;
}

/* ---------- Primary ---------- */

.owl-btn-primary {
  background: #2e7d32;
  color: white;
}

.owl-btn-primary:hover {
  opacity: 0.9;
}

/* ---------- Outline ---------- */

.owl-btn-outline {
  background: white;
  color: #2e7d32;
  border: 1px solid #b7d8b9;
}

.owl-btn-outline:hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* ---------- Secondary ---------- */

.owl-btn-secondary {
  background: #0f1e40;
  color: white;
}

.owl-btn-secondary:hover {
  opacity: 0.9;
}

/* ---------- Owl Levels ---------- */

.owl-btn-sprout {
  background: #05a55f;
  color: white;
}

.owl-btn-builder {
  background: #f36532;
  color: white;
}

.owl-btn-thinking {
  background: #1477da;
  color: white;
}

.owl-btn-wise {
  background: #73028f;
  color: white;
}

/* ---------- Sizes ---------- */

.owl-btn-sm {
  padding: 6px 14px;
  font-size: 13px;
}

.owl-btn-md {
  padding: 12px 24px;
  font-size: 16px;
}

.owl-btn-lg {
  padding: 16px 30px;
  font-size: 18px;
}
