/* Add this to your custom.css or at the bottom of your main style file */ :root { --primary-brand-color: #0052FF; /* Distinct RoamBest Blue */ --accent-gold: #D4AF37; /* For "Best" premium feel */ --font-main: 'Inter', sans-serif; } .navbar-brand span { color: var(--accent-gold); /* Highlighting the "Best" in RoamBest */ } /* Button Refinement - Mirroring the .me aesthetics */ .btn-primary { background-color: var(--primary-brand-color); border: none; border-radius: 8px; padding: 12px 24px; transition: transform 0.2s ease; } .btn-primary:hover { background-color: #0041CC; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0, 82, 255, 0.3); }