Chat with Tom
Tom the AI Bot
Add to your style.css: /* Floating Avatar Button Styles */ .floating-chat-btn { position: fixed; bottom: 30px; right: 30px; width: 80px; height: 80px; z-index: 9999; transition: transform 0.3s ease; } .floating-chat-btn img { width: 100%; height: 100%; border-radius: 50%; /* Makes it a circle */ box-shadow: 0 10px 25px rgba(0,0,0,0.2); border: 3px solid var(--primary); /* Teal border from your site theme */ background: #fff; object-fit: cover; } .floating-chat-btn:hover { transform: scale(1.1) rotate(5deg); } /* Tooltip that appears when you hover */ .chat-tooltip { position: absolute; top: -45px; right: 0; background: var(--dark); color: #fff; padding: 8px 15px; border-radius: 10px; font-size: 0.8rem; font-weight: bold; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.3s; } .floating-chat-btn:hover .chat-tooltip { opacity: 1; } /* Responsive adjustment for mobile */ @media (max-width: 768px) { .floating-chat-btn { width: 65px; height: 65px; bottom: 20px; right: 20px; } }

Transforming Behavior through Science & Support

I am Brendon Wollenberg, better known as Bambi. I specialize in peer support and the B.A.M.B.I. framework: Beliefs, Attitudes, Mindsets, Behaviors, and Interventions.

The B.A.M.B.I. Video Series

B.A.M.B.I. Pathways

An introduction to the architecture of behavior and our core framework.

Behavior Footprints

Tracing the origins of our actions to understand the present.

Stopping the Dominoes

Intervening early in the internal sequence to change the final behavior.

Architecture of Change

Building new neural pathways and lasting transformation.

Biology of Resilience

The science of how the body and brain heal after trauma and addiction.

Distracted Box Breathing

A mechanical tool to override the brain's panic alarm.

PATHWAY: The Game

A tabletop board game that makes the domino effect of choices visible.

Behavioral Intercepts

How to swap negative habits with intentional, healthy actions.

Trauma-Informed Care

Why physical safety is the prerequisite for psychological healing.

Store & Products

PATHWAY Tabletop Game

Practice relapse prevention in a safe, social, and interactive environment.

$34.99

The B.A.M.B.I. Workbook

A step-by-step guide to mapping your own behavioral pathways.

$19.99

Support Resources

\n\n```html\n\n\n
Chat with Tom
\n
\n \"Tom\n
\n
\n
\n```\n\n### 2. The CSS Edit\nOpen your `style.css` file on GitHub and paste this at the very bottom. I added an animation so Tom 'bounces' slightly to get people's attention:\n\n```css\n/* Tom Floating Button */\n.tom-chat-anchor {\n position: fixed;\n bottom: 30px;\n right: 30px;\n z-index: 99999;\n text-decoration: none;\n display: flex;\n align-items: center;\n flex-direction: column;\n}\n\n.tom-avatar-container {\n width: 70px;\n height: 70px;\n background: #fff;\n border-radius: 50%;\n border: 3px solid #4ecca3; /* Your B.A.M.B.I. teal */\n box-shadow: 0 10px 25px rgba(0,0,0,0.2);\n position: relative;\n display: flex;\n justify-content: center;\n align-items: center;\n animation: tomBounce 3s infinite ease-in-out;\n}\n\n.tom-avatar-container img {\n width: 80%;\n height: auto;\n}\n\n.online-indicator {\n position: absolute;\n bottom: 5px;\n right: 5px;\n width: 15px;\n height: 15px;\n background: #2ecc71;\n border: 2px solid white;\n border-radius: 50%;\n}\n\n.tom-bubble {\n background: #1a1a1d;\n color: white;\n padding: 6px 12px;\n border-radius: 8px;\n font-size: 0.75rem;\n font-weight: bold;\n margin-bottom: 8px;\n box-shadow: 0 4px 10px rgba(0,0,0,0.1);\n pointer-events: none;\n}\n\n@keyframes tomBounce {\n 0%, 100% { transform: translateY(0); }\n 50% { transform: translateY(-10px); }\n}\n\n/* Mobile Fix */\n@media (max-width: 600px) {\n .tom-chat-anchor { bottom: 15px; right: 15px; }\n .tom-avatar-container { width: 60px; height: 60px; }\n}\n```\n\n###